c#如何用一个程序打开另一个程序

2025-01-02 09:28:05
推荐回答(4个)
回答1:

使用Process类就可以了,
最简单的System.Diagnostics.Process.Start("C:\\1.exe");就可以了

回答2:

我这里有个例子
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();

//设置外部程序名
Info.FileName = "eclipse.exe";

//设置外部程序工作目录为 C:\
Info.WorkingDirectory = @"D:\常用软件\eclipse";

//最小化方式启动
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;

//声明一个程序类
System.Diagnostics.Process Proc;

try
{
Proc = System.Diagnostics.Process.Start(Info);
System.Threading.Thread.Sleep(500);
}
catch (System.ComponentModel.Win32Exception)
{

return;
}

回答3:

这么菜还好意思问!

回答4:

好吧 你问得不清不楚