I have a situation where I need to start a WPF application and have it run using a child window created by my C++ application. So the sequence of events would be -
- Start C++ application
- C++ application creates a window that it wants WPF app to run in.
- Launch WPF using CreateProcess function. Included in create process would be the handle of the window that the WPF app is to use.
It looks like this should be possible, but I cannot find function calls/parameters to do this. This will be in a Windows XP and Windows 7 environment.