首页 > 其他 > 详细

在wpf中运行EXE文件

时间:2014-07-03 07:12:41      阅读:541      评论:0      收藏:0      [点我收藏+]
最简单的方法:
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文件

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!