For example, embed in "calc.exe" to wpf window,Thanks.
例如,嵌入在“calc.exe”wpf窗口中,谢谢。
2 个解决方案
#1
4
You could use the Process.Start method:
你可以使用这个过程。启动方法:
Process.Start("calc.exe");
But you cannot load the exe into an existing WPF window.
但是不能将exe加载到现有的WPF窗口中。
#2
4
You don't. You can start another process by invoking it using System.Diagnostics.Process.Start(), but you can't "import" a process.
你不。可以通过使用System.Diagnostics.Process.Start()调用另一个进程来启动另一个进程,但不能“导入”一个进程。
#1
4
You could use the Process.Start method:
你可以使用这个过程。启动方法:
Process.Start("calc.exe");
But you cannot load the exe into an existing WPF window.
但是不能将exe加载到现有的WPF窗口中。
#2
4
You don't. You can start another process by invoking it using System.Diagnostics.Process.Start(), but you can't "import" a process.
你不。可以通过使用System.Diagnostics.Process.Start()调用另一个进程来启动另一个进程,但不能“导入”一个进程。