Grid
<Grid Margin="3,3,10,3"> <Grid.ColumnDefinitions> <ColumnDefinition Width="auto"/> <ColumnDefinition Width="*"/> <ColumnDefinition Width="auto"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="auto"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <Label Name="lb1" VerticalAlignment="Center" Margin="3" FontSize="40" FontFamily="微软雅黑">褪色反射变换</Label> <StackPanel Grid.Row="4" Grid.Column="1"> </StackPanel> </Grid>
StackPanel
<!--默认竖向--> <StackPanel> <TextBlock Text="aa"/> <TextBlock Text="bb"/> </StackPanel> <StackPanel Orientation="Horizontal"> <TextBlock Text="cc"/> <TextBlock Text="dd"/> </StackPanel>
标签:控件,知识点,StackPanel,备忘录,Grid,WPF From: https://www.cnblogs.com/chixiner/p/17154663.html