C#使用系統的“顯示案頭”功能(Shell.Application)

來源:互聯網
上載者:User

在 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);
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.