C# 界面嵌入其他应用程序
在界面中嵌入其他应用程序需要执行的事情是
1) 运行应用程序
2)嵌入应用程序
运行环境VS2019
[DllImport("User32.dll ", EntryPoint = "SetParent")]
private static extern IntPtr SetParent(IntPtr hWndChild, IntPtr hWndNewParent);
[DllImport("user32.dll ", EntryPoint = "ShowWindow")]
public static extern int ShowWindow(IntPtr hwnd, int nCmdShow);
[DllImport("user32.dll")]
private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndlnsertAfter, int X, int Y, int cx, int cy, uint Flags);
运行应用程序
运行应用程序,有些需要完整的路径,有些只需要应用程序名称就可以了,例如cmd.exe
我们运用进程去控制cmd.exe 运行和关闭。
嵌入应用程序
我们在FORM中插入Panel,然后再Panel嵌入正在执行的.exe文件。
#########################
代码如下:
cmdP = new Process();
cmdP.StartInfo.FileName = "cmd.exe";
cmdP.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;
cmdP.Start();
Thread.Sleep(200);
SetWindowPos(cmdP.MainWindowHandle, IntPtr.Zero, this.panel1.Location.X, this.panel1.Location.Y, panel1.Width,panel1.Height, 0);
SetParent(cmdP.MainWindowHandle, panel1.Handle);
ShowWindow(cmdP.MainWindowHandle, 3);
运行结果:
在此例子的基础上扩展应用需要考虑
1)目录路径
2)外部EXE界面尺寸
3)界面的开关:有的界面很简单就可以一次过关闭,有的关闭的时候,关得不好会会有其他问题。
4)调用多个外部界面的时候,最好使用线程或记得进行异常捕获处理,让多个外部界面顺利显示。