private void OpenFile(string filename)
        {
            ProcessStartInfo sInfo = new ProcessStartInfo();
            sInfo.WindowStyle = ProcessWindowStyle.Maximized;
            ThreadPool.QueueUserWorkItem( delegate(object o){  Process p=System.Diagnostics.Process.Start(filename);});
           
          
        }

打开时使用独立线程,以使打开的文件顶层显示

相关文章:

  • 2021-06-18
  • 2022-12-23
  • 2022-02-12
  • 2022-12-23
  • 2022-02-27
  • 2022-12-23
  • 2021-06-19
猜你喜欢
  • 2021-05-22
  • 2021-06-22
  • 2022-02-19
  • 2021-08-23
相关资源
相似解决方案