How to add a Windows form control to a WPF project in XAML.
- Add WindowsFormsIntegration assembly to your project
- Add Windows Forms assembly
- Now you can use the controls
In your Window add:
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Now the controls can be used like:
<WindowsFormsHost>
<wf:MaskedTextBox x:Name="mtbDate" Mask="00/00/0000"/>
</WindowsFormsHost>
Source: Link
6a044299-8cbc-4fba-8e22-cdea143b8704|0|.0
Windows Presentation Foundation