我有一个带有StackPanel的HubSection。我想将StackPanel移动到Hub Section的底部。
这是我的XAML:
<HubSection Width="783">
<DataTemplate>
<StackPanel VerticalAlignment="Bottom">
<TextBlock ...
</StackPanel>
但我在HubSection的顶部有StackPanel。我该如何解决?
答案 0 :(得分:1)
您只需将StackPanel放在另一个容器中,该容器将填充整个HubSection,让StackPanel能够与该容器的底部对齐:
<HubSection Width="783" VerticalContentAlignment="Stretch">
<DataTemplate>
<Grid>
<StackPanel VerticalAlignment="Bottom">
<TextBlock ...
</StackPanel>
</Grid>