ElementHost.Child Property
Gets or sets the UIElement hosted by the ElementHost control.
Assembly: WindowsFormsIntegration (in WindowsFormsIntegration.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object> <UIElement .../> </object>
Property Value
Type: System.Windows.UIElementThe hosted Windows Presentation Foundation (WPF) element.
The following code example demonstrates how to use the Child property to assign a hosted WPF element. For more information, see Walkthrough: Hosting a 3-D WPF Composite Control in Windows Forms.
private void Form1_Load(object sender, EventArgs e) { // Create the ElementHost control for hosting the // WPF UserControl. ElementHost host = new ElementHost(); host.Dock = DockStyle.Fill; // Create the WPF UserControl. HostingWpfUserControlInWf.UserControl1 uc = new HostingWpfUserControlInWf.UserControl1(); // Assign the WPF UserControl to the ElementHost control's // Child property. host.Child = uc; // Add the ElementHost control to the form's // collection of child controls. this.Controls.Add(host); }
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Surprisingly Expensive
This propery seems unnecesarily slow to set. I think it is reallicating the backing store for the host whenever you set the Child.
You can just place a System.Windows.Controls.Border in the Child, and then change the Child of that. That turns out to be much faster.
You can just place a System.Windows.Controls.Border in the Child, and then change the Child of that. That turns out to be much faster.
- 2/12/2012
- Daniel Normal Johnson