I'm Keyvan Nayyeri, a 25 years old Ph.D. student at
the Computer Science department of
the University of Texas at San Antonio.
I'm also
a Software Architect and Developer and previously held a B.Sc.
degree in Applied Mathematics.
This is my blog where I publish content about various topics specifically Programming Languages and Compilers, Software
Engineering and Programming.
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!
DotNetKicks.com
Feb 20, 2007 10:19 AM
#
KNR
Mar 06, 2007 11:45 PM
#
Keyvan Nayyeri
Mar 10, 2007 12:10 AM
#
Bindu
May 30, 2007 3:29 AM
#
Bindu
Jun 17, 2007 4:33 AM
#
crisha
Jul 18, 2007 10:15 PM
#
Habib Sabet
Nov 26, 2007 8:54 PM
#
Khamza Davletov
Apr 01, 2008 9:04 AM
#
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?
mehrdad
Jul 09, 2008 12:12 AM
#
hi, how we can set color of a pixel in wpf?
RonRap
Sep 11, 2008 8:26 PM
#
what's the meaning of "HWND"¿¿?
lnels
Nov 03, 2008 9:07 AM
#
Superb! Works like a charm...
Matthew
Feb 04, 2009 7:25 AM
#
Excellent and simple,
Was just what I needed. Very useful
SSN
Nov 20, 2009 12:13 AM
#
WPF Related Links « QuantuMatrix’s Weblog
Dec 08, 2009 11:24 AM
#
Turóczy Attila szakmai blogja
Jan 02, 2010 9:19 AM
#
http://msportal.hu/blogs/turczy_attila/archive/2010/01/02/a-windows-forms-233-s-a-wpf.aspx
Jan 02, 2010 10:03 AM
#
http://devportal.hu/blogs/turoczyattila/archive/2010/01/02/a-windows-forms-233-s-a-wpf.aspx
Jan 02, 2010 12:11 PM
#
http://devportal.hu/blogs/turoczyattila/archive/2010/01/02/a-windows-forms-233-s-a-wpf.aspx
Jan 12, 2010 4:17 PM
#
Leave a Comment