我想在我的Windows窗体应用程序中打开进程。
例如,我希望当用户按下其中一个窗体容器中的按钮时,mstsc.exe将会打开。
如果他按下按钮,它将在另一个容器上打开IE,
[DllImport("user32.dll", SetLastError = true)]
static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
private void button1_Click(object sender, EventArgs e)
{
Process p = Process.Start("mstsc.exe", @"c:\VPN4.rdp");
Thread.Sleep(3000);
p.StartInfo.CreateNoWindow = true; // new
SetParent(p.MainWindowHandle, this.panel1.Handle);
p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized; //new
}
它打开了这个过程但不是在windows窗体中,
答案 0 :(得分:4)
您可以启动另一个流程,并将其窗口放在您自己的窗口内。
尝试使用表单句柄而不是面板。这是一个简短的例子
private void toolStripButton1_Click(object sender, EventArgs e)
{
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "notepad";
info.UseShellExecute = true;
var process = Process.Start(info);
Thread.Sleep(2000);
SetParent(process.MainWindowHandle, this.Handle);
}
至于原始问题的具体问题,我猜它是由于远程桌面打开其他窗口让应用程序完成它的工作,而MainWindowHandle不是你所追求的那个。
尝试在Windows API中使用FindWindowEx来搜索正确的窗口。如果按进程ID和标题进行搜索,则应该找到正确的进程。 Stackoverflow和谷歌有大量的信息。只需搜索“C#FindWindowEx”
答案 1 :(得分:1)
ProcessStartInfo info = new ProcessStartInfo();
info.FileName = "notepad";
info.UseShellExecute = true;
Process.Start(info);