Events
Mar 17, 9 PM - Mar 21, 10 AM
Join the meetup series to build scalable AI solutions based on real-world use cases with fellow developers and experts.
Register nowThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
This article shows you how to create a Windows Presentation Foundation (WPF) control for use in your Windows Forms-based applications.
You need Visual Studio to complete this walkthrough.
Open Visual Studio and create a new Windows Forms App (.NET Framework) project in Visual Basic or Visual C# named HostingWpf
.
Note
When hosting WPF content, only C# and Visual Basic projects are supported.
Creating a new WPF control and adding it to your project is as easy as adding any other item to your project. The Windows Forms Designer works with a particular kind of control named composite control, or user control. For more information about WPF user controls, see UserControl.
Note
The System.Windows.Controls.UserControl type for WPF is distinct from the user control type provided by Windows Forms, which is also named System.Windows.Forms.UserControl.
To create a new WPF control:
In Solution Explorer, add a new WPF User Control Library (.NET Framework) project to the solution. Use the default name for the control library, WpfControlLibrary1
. The default control name is UserControl1.xaml
.
Adding the new control has the following effects:
File UserControl1.xaml is added.
File UserControl1.xaml.cs (or UserControl1.xaml.vb) is added. This file contains the code-behind for event handlers and other implementation.
References to WPF assemblies are added.
File UserControl1.xaml opens in the WPF Designer for Visual Studio.
In Design view, make sure that UserControl1
is selected.
In the Properties window, set the value of the Width and Height properties to 200.
From the Toolbox, drag a System.Windows.Controls.TextBox control onto the design surface.
In the Properties window, set the value of the Text property to Hosted Content.
Note
In general, you should host more sophisticated WPF content. The System.Windows.Controls.TextBox control is used here for illustrative purposes only.
Build the project.
Your new WPF control is ready for use on the form. Windows Forms uses the ElementHost control to host WPF content.
To add a WPF control to a Windows Form:
Open Form1
in the Windows Forms Designer.
In the Toolbox, find the tab labeled WPFUserControlLibrary WPF User Controls.
Drag an instance of UserControl1
onto the form.
An ElementHost control is created automatically on the form to host the WPF control.
The ElementHost control is named elementHost1
and in the Properties window, you can see its Child property is set to UserControl1.
References to WPF assemblies are added to the project.
The elementHost1
control has a smart tag panel that shows the available hosting options.
In the ElementHost Tasks smart tag panel, select Dock in parent container.
Press F5 to build and run the application.
Windows Forms and WPF are different technologies, but they are designed to interoperate closely. To provide richer appearance and behavior in your applications, try the following:
Host a Windows Forms control in a WPF page. For more information, see Walkthrough: Hosting a Windows Forms Control in WPF.
Apply Windows Forms visual styles to your WPF content. For more information, see How to: Enable Visual Styles in a Hybrid Application.
Change the style of your WPF content. For more information, see Walkthrough: Styling WPF Content.
.NET Desktop feedback feedback
.NET Desktop feedback is an open source project. Select a link to provide feedback:
Events
Mar 17, 9 PM - Mar 21, 10 AM
Join the meetup series to build scalable AI solutions based on real-world use cases with fellow developers and experts.
Register nowTraining
Module
Create a UI in a .NET MAUI app by using XAML - Training
Learn how to design a UI for a .NET MAUI app using XAML.