如何将explorer.exe出现在任何表格的顶部?

时间:2019-02-07 15:17:25

标签: c# winforms

我有此代码,它会相应地打开我的文档。但问题是它在我的应用程序下方,我希望它在我的主窗体上方

     String path = @"C:\Users\Diether\Documents";
     System.Diagnostics.Process prc = new System.Diagnostics.Process();
     prc.StartInfo.FileName = path;
     prc.Start();

1 个答案:

答案 0 :(得分:0)

您可以使用StartInfo,也许可以帮助您:prc.StartInfo.CreateNoWindow = true;您必须将其插入prc.Start();行之前。

OR

打开资源管理器时,将窗口最小化: example