[DllImport("kernel32.dll")]
        public static extern int WinExec(string exeName, int operType);  
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            WinExec(@"D:\project\LiuLun\LiuLun.Browser.Demo5\App\pdf.dll",1);
        }

这样做貌似还是有点问题的,以后再深入研究

相关文章:

  • 2022-12-23
  • 2022-02-23
  • 2022-02-09
  • 2022-01-14
  • 2021-10-13
  • 2022-12-23
猜你喜欢
  • 2022-01-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-06
  • 2021-12-13
  • 2022-02-08
相关资源
相似解决方案