添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

Windows窗体集成

除了给WPF从头开始编写用户界面之外,还可以在WPF应用程序中使用已有的Windows窗体控件,创建要在Windows窗体应用程序中使用的新WPF控件。集成Windows窗体和WPF的最佳方式是创建控件,将它们集成到另一个应用程序中。

警告:

Windows窗体和WPF的集成有一个很大的缺陷。如果集成了Windows窗体和WPF,Windows窗体控件仍显示以前的外观。Windows窗体控件和应用程序并没有获得WPF的新外观。从用户界面的角度来看,最好完全重写用户界面。

提示:

要集成Windows窗体和WPF,需要使用WindowsFormsIntegration程序集的System. Windows.Forms. Integration命名空间中的类。

<UserControl x:Class="WPFControl.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" >
<Button>
<Canvas Height="230" Width="230">
<Ellipse Canvas.Left="50" Canvas.Top="50" Width="100" Height="100"
Stroke="Blue" StrokeThickness="4" Fill="Yellow" />
<Ellipse Canvas.Left="60" Canvas.Top="65" Width="25" Height="25"
Stroke="Blue" StrokeThickness="3" Fill="White" />
<Ellipse Canvas.Left="70" Canvas.Top="75" Width="5" Height="5" Fill="Black" />
<Path Name="mouth" Stroke="Blue" StrokeThickness="4"
Data="M 62,125 Q 95,122 102,108" />
<Line X1="124" X2="132" Y1="144" Y2="166" Stroke="Blue" StrokeThickness="4" />
<Line X1="114" X2="133" Y1="169" Y2="166" Stroke="Blue" StrokeThickness="4" />
<Line X1="92" X2="82" Y1="146" Y2="168" Stroke="Blue" StrokeThickness="4" />
<Line X1="68" X2="83" Y1="160" Y2="168" Stroke="Blue" StrokeThickness="4" />
</Canvas>
</Button>
</Grid>
</UserControl>

Windows窗体中的WPF控件

可以在Windows窗体应用程序中使用WPF控件。WPF元素是一个一般的.NET类。但是,不能在Windows窗体代码中直接使用它;WPF控件不是Windows窗体控件。集成可以利用System.Windows.Forms.Integration命名空间中的ElementHost封装类来进行。ElementHost是一个Windows窗体控件,因为它派生自System.Windows.Forms.Control,在Windows窗体应用程序中,可以像其他Windows窗体控件那样使用。ElementHost包含和管理WPF控件。

下面是一个简单的WPF控件。在Visual Studio 2008中,可以创建一个定制的WPF用户控件库。示例控件派生自基类UserControl,包含一个栅格和一个带定制内容的按钮。

可以选择Windows窗体应用程序模板,创建一个Windows窗体应用程序。因为WPF用户控件项目在Windows窗体应用程序所在的解决方案中,所以可以把WPF用户控件从工具箱拖放到Windows窗体应用程序的设计界面上。这会添加对程序集PresentationCore、PresentationFramework、WindowsBase、WindowsFormsIntegration和包含WPF控件的程序集的引用。

在设计器生成的代码中,有一个引用WPF用户控件的变量和一个封装控件的ElementHost类型的对象。

private System.Windows.Forms.Integration.ElementHost elementHost1;
private WPFControl.UserControl1 userControl11;

在InitializeComponent方法中,初始化了对象,把WPF控件实例赋予ElementHost类的Child属性:

private void InitializeComponent()
this.elementHost1 = new
System.Windows.Forms.Integration.ElementHost();
this.userControl11 = new WPFControl.UserControl1();
this.SuspendLayout();
// elementHost1
this.elementHost1.Location = new System.Drawing.Point(39, 44);
this.elementHost1.Name = "elementHost1";
this.elementHost1.Size = new System.Drawing.Size(259, 229);
this.elementHost1.TabIndex = 0;
this.elementHost1.Text = "elementHost1";
this.elementHost1.Child = this.userControl11;
//...
}

启动Windows窗体应用程序,WPF控件和Windows窗体控件会显示在一个窗体中,如图35-28所示。

Windows窗体中的WPF控件_Windows
图  35-28

当然,还可以给WPF控件添加方法、属性和事件,再以与其他控件相同的方式使用它们。