我认为 WPF 设计器不支持 Windows 窗体组件。您需要在 XAML 或代码中指定这些。如何将 WinForms 按钮添加到 WPF 应用程序的简单示例。请注意,该按钮在设计图面上不可见。
<Window x:Class="DataTemplateBind.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:forms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="Window1" Height="300" Width="300">
<WindowsFormsHost Height="200" Name="windowsFormsHost1" Width="258" >
<forms:Button Text="Waaa :("></forms:Button>
</WindowsFormsHost>
</Window>
xmlns:forms
请注意默认情况下不存在的添加的命名空间。