我想知道是否有人知道如何使用 ac# 命令打开此框?
提前致谢!
您必须添加对 Shell32.dll (COM -> "Microsoft Shell Controls And Automation") 的引用并使用以下代码:
Shell32.Shell shell = new Shell32.Shell();
shell.ShutdownWindows();
添加对 C:\Windows\System32\Shell32.dll 的引用。完成此操作后,使用以下代码:
Shell32.ShellClass sc = new Shell32.ShellClass();
sc.ShutdownWindows();
这将正常显示关闭对话框。