为什么我不能在WPF C#中使用XAML自定义第二个UI?

时间:2017-10-03 20:13:07

标签: c# wpf xaml

我正在尝试在WPF中调用第二个UI页面。 但我的第二个UI没有得到我从XAML设置的任何组件。

我通过此代码在 MainWindow

调用了第二个UI页面
MainUI mainUI = new MainUI();
mainUI.Show();
this.Close();

这是MainUI.xaml文件的代码。

<Window x:Class="KBJ_Tetris.MainUI"
    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:KBJ_Tetris"
    mc:Ignorable="d"
    Title="Tetris" Height="400" Width="700" Background="Beige">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition></RowDefinition>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
            <ColumnDefinition></ColumnDefinition>
        </Grid.ColumnDefinitions>
        <Border >
            <Border BorderBrush="Black" BorderThickness="10" Width="100"/>
        </Border>
    </Grid>
</Window>

在Visual Studio的设计选项卡中,我看到了这张照片 enter image description here

我将背景颜色设置为米色,并在其上放置边框。 但不知何故,当它实际执行时我看不到任何这些效果。 enter image description here

它应该显示为设计标签的图片, 但只有这个大空窗......

仅供参考,我可以在MainUI.cs文件中控制第二个ui。 但我希望它也可以在XAML上使用。

有人可以给我一个建议吗?

1 个答案:

答案 0 :(得分:1)

第二个UI没有从其XAML中获得任何效果的原因是我在CS文件的MainUI的构造函数中删除了 InitializeComponent();

完全是我的坏...我的错误。

抱歉,感谢您帮助CNuts:)