码迷,mamicode.com
首页 > 其他好文 > 详细

在wpf中运行EXE文件

时间:2014-07-03 07:12:57      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:style   文件   os   art   new   window   

最简单的方法:
System.Diagnostics.Process.Start(@"路径");


网上的其他方法:
Process p = new System.Diagnostics.Process();
p.StartInfo.FileName =@"路径";
p.StartInfo.Arguments = "";
p.StartInfo.UseShellExecute = false;
    p.StartInfo.RedirectStandardInput = true;
            p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = false;
p.Start();

没有
 p.StartInfo.Arguments = "";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
 p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = false;
也不影响

在wpf中运行EXE文件,布布扣,bubuko.com

在wpf中运行EXE文件

标签:style   文件   os   art   new   window   

原文地址:http://www.cnblogs.com/syqun/p/exe.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!