Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Windows System Tray Application

I created a WPF window with system tray icon via NotifyIcon. When I click the icon in the system tray, the WPF application pops up and is shown on the screen.

But this solution does not fit my needs. I want the solution to be opened the same way the volumn, network center, security center, etc. is opened on system tray icon single click (just a little tiny box on top of the taskbar which can neither be moved nor has a close button in the upper right corner).

Can anyone give me a hint?

like image 534
Basti Avatar asked Nov 14 '22 05:11

Basti


1 Answers

Does WindowStyle.None fit your needs (Can be set in the WindowStyle Property of your Window)?

like image 113
Jens Avatar answered Dec 30 '22 22:12

Jens