Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 WPF 中创建了一个自定义文件夹浏览器,并且需要直接从应用程序本身打开文件夹的属性窗口。
我知道有一个叫做 .cpl 的文件,我们可以在 C# 程序中使用它,通过使用以下代码在新进程中打开窗口:Process.Start("desk.cpl"); link。但是,我想知道.cpl的名称,我们可以使用它来打开文件夹的属性窗口。如果有人分享我如何在 C# 代码中实现此功能,将不胜感激。谢谢
Process.Start("desk.cpl");