if (DialogResult.Yes == MessageBox.Show(
                    "文件已下载完成,是否打开文件?",
                    "打开文件",
                    MessageBoxButtons.YesNo,
                    MessageBoxIcon.Exclamation))
                {
                    try
                    {
                        Process.Start(_fileManager.FinalFilePath);
                    }
                    catch (System.Exception ex)
                    {
                        MessageBox.Show(ex.Message);
                    }
                }

 

相关文章:

  • 2021-09-05
  • 2021-11-11
  • 2022-12-23
  • 2021-06-27
  • 2021-11-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-27
  • 2022-12-23
相关资源
相似解决方案