xaml要求简单的方法
本文关键字:方法 简单 xaml | 更新日期: 2023-09-27 18:00:51
有任何方法可以不使用rowdefinition就像所有的东西一个接一个地设置像html
<Grid Grid.Row="1" Height="auto" Width="300" Background="#FF343434" x:Name="new_order">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Grid.Row="0" Text="Order:Table 1" HorizontalAlignment="Left" VerticalAlignment="Top" FontSize="24" Margin="5" ></TextBlock>
<TextBlock Grid.Row="0" Text="set in 10:00" VerticalAlignment="Top" HorizontalAlignment="Right" FontSize="16" Margin="3"></TextBlock>
我认为您正在寻找StackPanel:
<StackPanel>
<TextBlock Text="Row 1" />
<TextBlock Text="Row 2" />
<TextBlock Text="Row 3" />
</StackPanel>