c#调用python3程序

2021-02-19 15:04发布

复制代码
        private void button3_Click(object sender, EventArgs e)
        {
            Process p = new Process();
            string path = @"H:\src\wel.py";
            p.StartInfo.FileName = @"E:\Python\Python36\python.exe";
            p.StartInfo.Arguments = path;
            Console.WriteLine(path);
            p.StartInfo.UseShellExecute = false;
            p.StartInfo.RedirectStandardOutput = true;
            p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardError = true;
            p.StartInfo.CreateNoWindow = true;
       p.Start();
复制代码

初接触c#,因为它方便,所以想用它做GUI,调用python程序。

百度学习了下,有个用进程启动python的方法。

但为什么我的不能用呢?

wel.py单独运行正常。但点了按钮,什么反应都没有

 

wel.py里面作用是打开浏览器。

2条回答
Anthone
2楼-- · 2021-02-19 15:18

你都设置了p.StartInfo.CreateNoWindow = true;了,当然啥也没有啊

查看更多
Fickle 薄情
3楼-- · 2021-02-19 15:19

p.Start();

查看更多
登录 后发表回答