Host Windows Forms Controls in WPF
Cool! I'm still here and have enough time to waste with blogging!
In one of my recent posts about a free GridView control for Windows Presentation Foundation I stated that previously I was hosting a traditional Windows Forms GridView in my WPF applications to have a GridView. This is a helpful feature since there are some differences in WPF and Windows Forms controls and the ability to host Windows Forms controls in Windows Presentation Foundation can solve some problems in short time.
Process is simple. First you need to add a HWND to your WPF applications in UI to host Windows Form controls there. Actually you must derive a class from HwndHost base class to be able to do this but thankfully Microsoft has done the main job and has added a default implementation that is suitable for many common needs and it's WindowsFormsHost.
To use this class you need to add two references to System.Windows.Forms and WindowsFormsIntegration assemblies. As you know first one deals with Windows Form controls but second one is an assembly that lets you to add HWND to WPF applications and enables interoperability for WPF with Windows Forms. So you need to add two new namespaces to your WPF application or XAML file to add HWND to them.
<Window x:Class="HostWinFormInWPF.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="Host WinForm Controls in WPF" Height="200" Width="300"
>
Now that you have added these namespaces to application, it's possible to use WindowsFormsHost from Windows Forms Integration to add HWND to your application. This element provides a hosting surface for your Windows Forms controls. you can use its Width and Height properties to set your appropriate size for hosting surface.
<Window x:Class="HostWinFormInWPF.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="Host WinForm Controls in WPF" Height="200" Width="300"
>
<Grid>
<wfi:WindowsFormsHost Width="250" Height="150" />
</Grid>
</Window>
WindowsFormsHost can contain controls from Windows Forms as its children. For example I add a DataGridView to my application and set a name for it. Later I'll use this name to refer to this control and get access to its properties and methods.
<Window x:Class="HostWinFormInWPF.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="Host WinForm Controls in WPF" Height="200" Width="300"
>
<Grid>
<wfi:WindowsFormsHost Width="250" Height="150">
<wf:DataGridView x:Name="gridView" />
</wfi:WindowsFormsHost>
</Grid>
</Window>
Now I can go to code behind and write my logic to test this hosted GridView. First I create a new class for Person for my testing purposes.
using System;
using System.Collections.Generic;
using System.Text;
namespace HostWinFormInWPF
{
internal class Person
{
public Person(string name, int age)
{
this.name = name;
this.age = age;
}
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
private int age;
public int Age
{
get { return age; }
set { age = value; }
}
}
}
I create a list of Persons on fly and will use it as data source for my hosted GridView to implement a binding and test my control.
public Window1()
{
InitializeComponent();
DataGridView grid = this.FindName("gridView") as DataGridView;
List<Person> list = new List<Person>();
list.Add(new Person("Keyvan Nayyeri", 22));
list.Add(new Person("Hamed Banaei", 25));
grid.DataSource = list;
grid.Refresh();
}
Running this application I get my expected result:
+ Sweet! After a long time today I could sleep like a human!
[advertisement] Axosoft OnTime 2008 is four developer tools in one: bug tracking, project wiki, feature management, and help desk. It manages your development process so developers can focus on coding. Installed or Hosted – Free Single-user license -- Free 30-day team trial.
11 Comments : 02.20.07
Feedbacks
Hi, thanks for the blog.
Do you know how to implement WinForms like ToolStrip, with those cool ToolStripDropDown, ToolStripXXXs? Or dou think it's right way to use WindowsFormsHost?
hi, how we can set color of a pixel in wpf?
what's the meaning of "HWND"¿¿?
Superb! Works like a charm...

#1
DotNetKicks.com
02.20.2007 @ 10:19 AM