views:

555

answers:

2

How can I host a (.Net, Java, VB6, MFC, etc) application in a WPF window. I have a need to use WPF windows to wrap external applications and control the window size and location. does anyone have any ideas on how to accomplish this or a direction to research in?

+1  A: 

Use a HwndHost to host the outside window in your application.

Daniel Jennings
A: 

This article explains how to use HwndHost along with a few other Win32 API calls to accomplish the task.

palehorse