2012-11-30 43 views
2

啓動按鈕我設置我的控制檯全屏,但我也想隱藏在VB.NET任務欄和開始按鈕使用Visual Studio 2010隱藏開始菜單,在VB.NET

感謝

+3

這可能有所幫助:http://stackoverflow.com/q/1165879/62576 –

回答

0

隱藏任務欄的一種方法是結束瀏覽器進程。

For Each p As Process In Process.GetProcesses 
    If p.ProcessName = "explore" Then 
     p.Kill() 
    End If 
Next 

當你完成後,你將不得不重新啓動瀏覽器進程。

Process.Start("explorer")