WPF 中如何使用第三方控件 ,可以使用WindowsFormsHost 类

允许在 WPF 页面上承载 Windows Forms控件的元素。

命名空间:   System.Windows.Forms.Integration

程序集:   WindowsFormsIntegration(在 WindowsFormsIntegration.dll 中) 用于 XAML 的 XMLNS:http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation

add: http://msdn.microsoft.com/zh-cn/library/system.windows.forms.integration.windowsformshost

如果要引用的话

<Window x:Class="Selection.Window1"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"     Title="Dates" Height="314" Width="373">     <Grid>     <Label HorizontalAlignment="Left" Margin="20,25,0,0" Name="label1" Width="35.63" Height="23.2766666666667" VerticalAlignment="Top">First</Label>     <Label Height="23.2766666666667" HorizontalAlignment="Left" Margin="20,56,0,0" Name="label2" VerticalAlignment="Top" Width="52.63">Second</Label>     <WindowsFormsHost Name="hostFirst" Margin="85,25,18,0" Height="23.2766666666667" VerticalAlignment="Top">       <wf:DateTimePicker Name="first"/>     </WindowsFormsHost>     <WindowsFormsHost Name="hostSecond" Margin="85,56,18,0" Height="23.2766666666667" VerticalAlignment="Top">       <wf:DateTimePicker Name="second"/>//文本框里是日期     </WindowsFormsHost>     <Button Height="23" HorizontalAlignment="Left" Margin="20,100,0,0" Name="compare" VerticalAlignment="Top" Width="75" Click="compareClick">Compare</Button>     <TextBox Margin="20,131,104,20" Name="info" TextWrapping="WrapWithOverflow" AcceptsReturn="False" IsReadOnly="True" />     <Button Height="22" HorizontalAlignment="Right" Margin="0,0,18,20" Name="quit" VerticalAlignment="Bottom" Width="75" Click="quitClick">Quit</Button>   </Grid> </Window>

后台C#

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Windows.Forms;

namespace Selection {

/// <summary>

/// Interaction logic for Window1.xaml     /

// </summary>
    public partial class Window1 : Window     {

private DateTimePicker first;

private DateTimePicker second;
        public Window1()         {

InitializeComponent();

//

  Child 获取或设置由 WindowsFormsHost 元素承载的子控件。      

first = hostFirst.Child as DateTimePicker;

second = hostSecond.Child as DateTimePicker;         }
        private void quitClick(object sender, RoutedEventArgs e)         {

this.Close();

}
        private void compareClick(object sender, RoutedEventArgs e)         {

int diff = dateCompare(first.Value, second.Value);

info.Text = "";

show("first == second", diff == 0);

show("first != second", diff != 0);

show("first <  second", diff < 0);

show("first <= second", diff <= 0);

show("first >  second", diff > 0);

show("first >= second", diff >= 0);         }
        private void show(string exp, bool result)         {

info.Text += exp;

info.Text += " : " + result.ToString();

info.Text += "\r\n";

//\r 表示:回车符(ACSII:13 或0x0d),就是我们常说的硬回车。

//  \n 表示:换行(ACSII:10 或0x0a),就是我们常说的软回车。

//\n,好比你在DreamWeaver里做一个网页,在源代码里按一下回车,是给源代码换行。
        }
        private int dateCompare(DateTime leftHandSide, DateTime rightHandSide)         {

// TO DO

return 42;

}

}

}

WPF Windows Forms integration

在wpf程序中整合windows form:

1.在references中添加WindowsFormsIntegration和System.Windows.Forms。

2.在xaml中使用的时候要写清楚名字空间,可以把这两个ns定义出来。

下面两句是重点,wpf书写的时候一定要注意引用

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

xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"

插入WindowsFormsControl:

<wfi:WindowsFormsHost>             <wf:DateTimePicker/> </wfi:WindowsFormsHost>

看到Windows.Forms下面也有Button控件(废话),于是想知道这个Button和WPF通常用的System.Windows.Controls.Button有什么不同。

看了看两者的继承体系:

System.Windows.Controls域中:  Button<ButtonBase<ContentControl<Control

System.Windows.Forms域:         Button<ButtonBase<Control

看似差不多,其实他们完全存在于两个不同的空间,没有一点联系。

两个Button类里定义的内容也不尽相同,Forms.Button看上去内容丰富一些,发现里面有DoubleClick这个event,但是试了试并不起作用,换到windows form 程序下仍然不起作用。(Visual Studio的property界面上看不到这个事件,但是可以在代码里自己加event handler,虽然加了也白加)。Controls.Button里虽然没有DoubleClick,但是MouseDoubleClick是work的。而Forms.Button似乎就只能触发Click事件。

<Window x:Class="WpfApplication1.Window1"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Title="Window1" Height="300" Width="300">

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

xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"           >

<Grid.RowDefinitions>

<RowDefinition Height="*"/>

<RowDefinition Height="*"/>

</Grid.RowDefinitions>

<Button Grid.Row="1" MouseDoubleClick="Button_MouseDoubleClick">button</Button>

<wfi:WindowsFormsHost Grid.Row="0">

<wf:Button MouseDoubleClick="Button_MouseDoubleClick"/>

</wfi:WindowsFormsHost>     </Grid> </Window>

这两个事件对应的event类型也不一样,一个是System.Windows.Input.MouseButtonEventHandler,一个是System.Windows.Forms.MouseEventHandler,所以对应的event handler的函数的参数也不一样,一个是private void Button_MouseDoubleClick(object sender, MouseButtonEventArgs e),一个是private void Button_MouseDoubleClick(object sender, System.Windows.Forms.MouseEventArgs e),因此两个event handler函数名可以相同。

时间: 2024-11-03 21:04:43

WPF 中如何使用第三方控件 ,可以使用WindowsFormsHost 类的相关文章

转载 [WPF][C#]在WPF中内嵌WindowsForm控件-使用WindowsFormsControlLibrary

[WPF][C#]在WPF中内嵌WindowsForm控件-使用WindowsFormsControlLibrary 在[WPF][C#]在WPF中内嵌WindowsForm控件一文中为各位介绍了直接在WPF中使用XAML来嵌入Windows Form控件的作法,不过不是每个人都喜欢写XAML,而且有时候会需要把已经存在的Windows Form应用程序嵌入到WPF中,所以这次就来跟大家介绍怎么使用参考dll档的方式,把dll中的Windows Form加到WPF中. 都说了要使用Windows

WPF中通过代码设置控件的坐标

用WPF做贪吃蛇小游戏时,发现了一个问题: 贪吃蛇的移动,我是通过不断刷新Rectangle来实现(贪吃蛇的身体由一组Rectangle组成),因此需要不断调整Rectangle的坐标,但是WPF中没有Location的相关设置 在网上查到可以用Thickness实现 Rectangle Rec = new Rectangle(); Rec.Margin = new Thickness(1, 2, 3, 4); 但总是调不准 其实可以通过Canvas实现 Canvas介绍 用代码实现Canvas

在WPF中引用WinForm的控件

以ArcEngine为例: mapControl = new AxMapControl(); MapHost.Child = mapControl; //MapHost为WindowsFormHost控件 ((System.ComponentModel.ISupportInitialize)(this.mapControl)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.mapControl)).EndInit();

在WPF中内嵌WindowsForm控件-使用WindowsFormsControlLibrary

原来有一个WINFORM项目的功能模块希望集成到新的WPF项目中,怎样集成才最简单? 思路:将原来的WINFORM项目类型改为WindowsFormsControlLibrary类型就OK了. 步骤: 1.所以我们就直接建立一个WindowsFormsControlLibrary项目吧!接着我在该项目中新增Windows Form,为Form1.也就是将原来的项目类型改造为WindowsFormsControlLibrary项目. 2新建Wpf项目 (1).添加两个引用:WindowsForms

WPF第三方控件盘点

WPF统一的编程模型.语言和框架,实现了界面设计人员和开发人员工作可以分离的境界,鉴于WPF强大的优势,且一直是开发者关注的地方,下面和大家分享基于WPF项目开发需要用到的第三方控件,包括业界最受好评的网格控件.图表控件.停靠窗口和文本编辑器. 网格控件 1. Mindscape WPF Property Grid 这款表格控件是100%原生WPF表格控件,是Mindscape公司旗下WPF Elements用户界面套包里的一个商业子控件,当前已经更新到了5.1版本,新的版本在属性表格的性能以及

Delphi中代替WebBrowser控件的第三方控件

原文地址:http://blog.csdn.net/nanfeiyannan/article/details/7341492 这几天,接触到在delphi中内嵌网页,用delphi7自带的TWebBrowser控件,显示的内容与本机IE8显示的不一样,但是跟装IE8之前的IE6显示一个效果.现在赶脚是下面两个原因中的一个: 1.Navigate这个方法用的有点问题,里面的参数不同及Navigate2等不同方法,调用的IE内核版本不同 2.这个自带的控件用着不爽,直接换一个第三方控件 对于第一点,

WPF中查找控件的扩展类

在wpf中查找控件要用到VisualTreeHelper类,但这个类并没有按照名字查找控件的方法,于是搜索网络,整理出下面这个类,感觉用起来很是方便. 贴出来,供大家参考. /// <summary> /// WPF/Silverlight 查找控件扩展方法 /// </summary> public static class VisualHelperTreeExtension { /// <summary> /// 根据控件名称,查找父控件 /// elementNa

在第三方控件 super Grid 中想要删除选中的行

代码: DialogResult result = MessageBox.Show("确定移除选中词吗?", "移除选中",MessageBoxButtons.YesNo,MessageBoxIcon.Information); if (result == DialogResult.Yes) { SelectedElementCollection grid = SuperGrid.PrimaryGrid.GetSelectedRows(); foreach (Gri

牛腩新闻发布系统———如何在开发中使用第三方控件

开发的项目多了以后,很多时候系统自带控件根本不能满足我们的需要,所以有时候就需要我们使用第三方控件来让我们的系统更加Perfect! 下面 ,我记录一下牛腩是如何添加第三方控件的 比如我们要使用 FreeTextBox控件 第一步:先把第三方控件(某个DLL或者其他文件)下载下来 第二步:然后添加对该文件的引用(右击自己的启动项目-添加–引用) 第三步:看到VS左边的工具箱了吗,在空白处右击选择 选择项 第四步:然后会看到如下界面,在单击 浏览,找到自己要添加的第三方控件,确定. 第五步:依次单