Hide the taskbar using c#

2019-01-20 13:45发布

问题:

i am running windows Xp 64 bit. i want to hide the taskbar when i run my application. I tried codes by searching in google. In all those, it hides the task bar. But the problem is, when i open a notepad and maximize it, it is not actually into full screen. Because the space where task bar was there is still blocked with empty space. I want it fit really into full scree mode. Please help me on this. Thanks.

回答1:

I've done this by making the application borderless, maximized, and setting it to be Topmost. Here's a perfect example from CodeProject.

As one of the commenters has said, replacing disabling Explorer and running your application might be the best way, security-wise.



回答2:

If you like to replace the windows shell (taskbar) you'll have to change a registry key.

Changing the default shell (all users):

  1. open regedit (start menu > run, and type in regedit)
  2. go to: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon.
  3. Change Shell from explorer.exe to your program path and name e.g. c:\myKioskApp\Kiosk.exe

Changing the default shell (only current user):

  1. open regedit (start menu > run, and type in regedit).
  2. go to: HKCU\Software\Microsoft\Windows NT\CurrentVersion\Winlogon.
  3. add a new string value (Edit > New > String Value) called shell. and set the value to the path of the new shell e.g. c:\myKioskApp\Kiosk.exe
  4. log out and log back in.


回答3:

You Can Hide your task bar by setting Following Properties of your C# Form.

WindowState : Maximized FormBorderStyle : FixedDialog