我在用
System.Diagnostics.Process.Start(ProcessInfo);
从我的 Windows 窗体应用程序中在记事本中打开 TEXT 文件。
详细的代码片段是
ProcessStartInfo PSI = new ProcessStartInfo("notepad.exe", LogFile);
PSI.WindowStyle = ProcessWindowStyle.Normal;
System.Diagnostics.Process p = System.Diagnostics.Process.Start(PSI);
但是,它会在默认桌面上打开记事本,但不会在运行主应用程序的扩展桌面上打开。
现在,问题是,如何在活动桌面上打开记事本,即当前应用程序正在运行的窗口?