8,757
社区成员
发帖
与我相关
我的任务
分享<Grid Margin="0" Background="Green" Width="200" Height="100">
<Grid.RowDefinitions>
<RowDefinition Height="10" />
<RowDefinition />
<RowDefinition Height="10"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10" />
<ColumnDefinition />
<ColumnDefinition Width="10" />
</Grid.ColumnDefinitions>
<!--不要设置TextBlock的高度和宽度由其自适应-->
<TextBlock Text="1234646" Grid.Row="1" Grid.Column="1" Margin="10,0" TextAlignment="Center" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Grid>