我试图在4x4网格上方的小空间中为我的xaml页面添加标题,但是当我尝试添加标签时,它表示内容设置不止一次。
这是我的代码:
<Window x:Class="WpfApplicationAssignmentgood.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid Name="mainGrid" Margin="0,56,0,0">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
</Grid>
<Label Content="Hello" HorizontalAlignment="Center", VerticalAlignment="Center" FontFamily="Arial Black" FontSize="24" />
</Window>
答案 0 :(得分:0)
您的Window
只能包含一个孩子。在您的情况下,Window
包含Grid
和Label
。
确保您的Window
只有一个孩子,您可以将Label
放在Grid
内。像这样:
<Window ... >
<Grid>
<Grid ...>
...
</Grid>
<Label Content="Hello" ... />
</Grid>
</Window>