您的位置:首页 > 移动开发

How to use .NET Windows Control into the WPF Application

2013-06-17 22:56 555 查看
Host the Windows Form Control into WPF Application

It is easy to place the Windows Control into the WPF Window. There are very extensive ranges of controls available in Windows, which can be used in WPF application after reading the article.



Steps:

1. Create the WPF Application in visual studio 2008.

2. Make sure you have the reference of WindowsFormsIntegration.dll and System.Windows.Forms.dll.

3. Open the Window1.xaml in the designer.

4. Add the Windows Form namespace as follows

xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"


NOTE: If you want to any 3rd party control then add its reference to the project and add the namespace for the assembly.



5. Drag and drop the WindowsFormsHost control to Windows1.xaml Window.

6. Write the Xaml code inside the WindowsHost Element as followes



<my:WindowsFormsHost Name="windowsFormsHost1"
Height="62" VerticalAlignment="Top">

<wf:DateTimePicker Name="dtpicker1"></wf:DateTimePicker>

</my:WindowsFormsHost>



Compile and Run the WPF Application you would see the Windows Control there.

In the source code I user thee WindowsFormsHost, two contains the
DateTimePicker and third one contain empty DataGrid.



Summary: If you have already made investment in Windows Form control, you can use those in WPF without any issue.

转自【http://www.a2zdotnet.com/View.aspx?Id=80#.Ub8hYpyvy3I】
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: