我的
WPF项目中有一个StackPanel控件,它位于Grid的第0列第2行.如何将StackPanel大小自动调整为该网格单元的大小?将StackPanel宽度和高度设置为“auto”只会将其大小调整为其内容.我可以明确地将其宽度和高度设置为数值,但我想知道是否有更清晰,更准确的方法.谢谢.
相关的XAML:
<Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="1*"/> <ColumnDefinition Width="1*"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="74*"/> <RowDefinition Height="74*"/> <RowDefinition Height="421*"/> </Grid.RowDefinitions> <Label Content="{StaticResource LoginWindow_Title}" Style="{StaticResource TitleH1}" Grid.ColumnSpan="2"/> <Label Content="{StaticResource LoginWindow_Subtitle}" Style="{StaticResource TitleH2}" Grid.Row="1" Grid.ColumnSpan="2"/> <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Center" Grid.Row="2" VerticalAlignment="Top"> <StackPanel HorizontalAlignment="Left" Grid.Row="2" VerticalAlignment="Top"> <Label Content="Log in"/> </StackPanel> </Border> </Grid>
解决方法
你的StackPanel不在Grid中,它在Border内.因此,要获取所有可用空间,您可以为其及其父边框设置水平和垂直对齐以拉伸:
<Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="1*"/> <ColumnDefinition Width="1*"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="74*"/> <RowDefinition Height="74*"/> <RowDefinition Height="421*"/> </Grid.RowDefinitions> <Border HorizontalAlignment="Stretch" VerticalAlignment="Stretch" BorderBrush="Black" BorderThickness="1" Grid.Row="2"> <StackPanel VerticalAlignment="Stretch" HorizontalAlignment="Stretch"> <Label Content="Log in"/> </StackPanel> </Border> </Grid>
即便如此,像其他提到的那样,在这种情况下,其他一些小组几乎肯定会更好.