我正在设置我的控制台全屏,但我也想使用 Visual Studio 2010 在 VB.NET 中隐藏任务栏和开始按钮
谢谢
隐藏任务栏的一种方法是结束资源管理器进程。
For Each p As Process In Process.GetProcesses
If p.ProcessName = "explore" Then
p.Kill()
End If
Next
完成后,您必须重新启动资源管理器进程。
Process.Start("explorer")
我结束了使用 Sam 解决方案,但我做了另一种方式,因为使用 Process.Kill 并没有阻止 explorer.exe 自动重启。
不得不以这种方式使用taskkill:
System.Diagnostics.Process.Start("taskkill.exe", " /f /im explorer.exe")
然后,当您关闭应用程序时,再次调用 explorer.exe:
System.Diagnostics.Process.Start("C:\Windows\explorer.exe")
我不得不使用完整路径,因为调用“explorer.exe”并没有恢复任务栏。