Winform控件在WPF中被裁剪

时间:2017-09-30 14:01:26

标签: wpf winforms user-controls

我在尝试在WPF中包含winform用户控件时遇到问题。无论我尝试做什么,我的控制都会被裁掉。

即使我没有设置选项,控件也会自动进行自动调整。

这就是它的样子

enter image description here

这是XAML

<Window x:Name="mainForm" x:Class="RFID.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:RFID"
        mc:Ignorable="d"
        xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
        xmlns:sp="clr-namespace:gei1076_tools;assembly=gei1076_tools"
        Title="MainWindow" Height="350" Width="755.682">
    <Grid>
        <WindowsFormsHost>
            <sp:SerialPortConfigurator x:Name="spcConfigurator" ></sp:SerialPortConfigurator>
        </WindowsFormsHost>
    </Grid>
</Window>

我错过了什么?

由于

0 个答案:

没有答案