在 Windows 系統的 工作列 上的 快速啟動欄 裡,通常有一個表徵圖 ,點擊這個表徵圖,就會切換到案頭。這個表徵圖實際是一個 “Windows Explorer Command” ,用記事本開啟這個檔案,我們看到如下的內容:
[Shell]Command=2IconFile=explorer.exe,3[Taskbar]Command=ToggleDesktop
這個檔案的格式,實際是一個 ini 檔案的形式,其中,我們要關注的是 Command=ToggleDesktop 這句,這句是explorer要執行的命令;通過 MSDN 我們可以看到關於 ToggleDesktop 的說明:
This method has the same effect as the Show Desktop button in the Quick Launch area of the Taskbar.
It either hides all open windows and shows the desktop, or it hides the desktop and shows all open windows.
The ToggleDesktop method does not display any user interface, it just invokes the toggle action.
在C#中,使用 顯示案頭 的功能,實際就是使用 Shell.Application 去執行 ToggleDesktop 這個功能,代碼如下:
Type shellType = Type.GetTypeFromProgID("Shell.Application");object shellObject = System.Activator.CreateInstance(shellType);shellType.InvokeMember("ToggleDesktop", System.Reflection.BindingFlags.InvokeMethod, null, shellObject, null);