My question is how to run an application(.exe) inside WPF application. I mean running inside a window of an application, not an external running an application.
Thanks in advance :D
|
My question is how to run an application(.exe) inside WPF application. I mean running inside a window of an application, not an external running an application. Thanks in advance :D |
|||
|
What you are looking to do is entirely possible, but it does come with a few bugs, so don't expect an easy ride. What you need to do is create a class that inherits from In the above example, they give you the notion of being able to put a Win32 control within your WPF form, but you can use the same architecture to load the
Please keep in mind that you will need to import a few functions from the User32.dll to be able to set the style of the window and set the parent window handle:
Also make sure that you are including:
This is my first answer on a forum so please let me know if it needs some work. Also reference Hosting external app in WPF window but don't worry about DwayneNeed stuff. Just use SetParent() as you see in my code above. Just be careful if you try embedding the app inside a tab page. You will encounter some fun there. |
|||
|
|
TextBoxcontrol. I'm not sure what it's called in WPF. If you wanted more features (like WordPad), you could use theRichTextBoxcontrol (again, not sure what WPF calls it). You don't need to host the other application inside your window at all. – Cody Gray Jun 26 '11 at 8:48