我正在编写一个 Windows 窗体应用程序,我需要以编程方式返回桌面。

我试过这段代码,但它不起作用:

using System;
using System.Windows.Forms;

private void ToggleDesktop() {

SendKeys.Send("^({ESC}D)"); //<-- Semantic error, Should simulate: WIN+D

}

有没有可能做到这一点?

最佳答案

您可以使用 Shell32.dll 窗口程序集来执行此操作。

只需添加对 C:\Windows\System32\Shell32.dll 的引用,然后转到引用属性并在 False 附近放置一个 Embed Interop Types (因为您要使用的类是 ShellClass ,它是互操作的。

现在,就这么简单

Shell32.ShellClass objShel = new Shell32.ShellClass();
objShel.ToggleDesktop();

关于c# - 以编程方式显示桌面,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41598951/

10-13 03:25