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):
- open regedit (start menu > run, and type in regedit)
- go to: HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon.
- Change Shell from explorer.exe to your program path and name e.g. c:\myKioskApp\Kiosk.exe
Changing the default shell (only current user):
- open regedit (start menu > run, and type in regedit).
- go to: HKCU\Software\Microsoft\Windows NT\CurrentVersion\Winlogon.
- 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
- 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