We are developing a layout manager in WPF that has viewports which can be moved/resized/etc by a user. Viewports are normally filled with data (pictures/movies/etc) via providers that are under our control in the layout manager. My job is to examine if its also possible to host any external Windows app (i.e. notepad, calc, adobe reader, etc) in a viewport. I encounter a number of problems.
Most resources point to using the HwndHost class. I am experimenting with this walkthrough from Microsoft itself: http://msdn.microsoft.com/en-us/library/ms752055.aspx
I've adapted this so the list box is replaced with the windows handle from the external application. Can anybody help me out with these questions:
- The walkthrough adds an extra static sub window in which the
ListBox
is placed. I don't think I need that for external apps. If I ommit it, I have to make the external app a child window (using Get/SetWindowLong from user32.dll to setGWL_STYLE
asWS_CHILD
). But if I do that, the menu bar of the app dissapears (because of theWS_CHILD
style) and it no longer receives input. - If I do use the sub window, and make the external app a child of that things work reasonably, but sometimes the external app does not paint ok.
- Also, I need the child window to resize to the viewport. Is this possible?
- When the exernal app spawns a child window (i.e. Notepad->Help->About), this window is not hosted by the
HwndHost
(and thus can be moved outside the viewport). Is there any way I can prevent that? - Since I need no further interaction between the external application and the layout manager, am I right in assuming I do not need to catch and forward messages? (the walkthrough adds a HwndSourceHook to the sub window to catch selection changes in the listbox).
- When you run the (unmodified) example VS2010 and close the window, VS2010 does not see that the program ended. If you break-all, you end up in assembly without source. Something smelly is going on, but I cannot find it.
- The walkthrough itself seems to be very sloppy coded, but I have not found any better documentation on this subject. Any other examples?
- Another approach is not to use
HwndHost
butWindowsFormHost
as discussed here. It works (and is much simpler!) but I do not have control over the size of the application? Also, WinFormHost is not really meant for this?
Thanks for any pointers in the right direction.