- 无论图像纵横比如何,我都希望将文本锚定到按钮的最底部。
- 我希望图像可以拉伸以适合按钮中的剩余空间。
此 xaml 确实让 Image 填充了剩余空间,但文本位于 Image 的正下方,而不是按钮的最底部。也许我需要使用 DockPanel 以外的东西,但我不确定该使用什么。如果有另一种可行的方法,则文本不需要位于标签中。
谢谢
<Button Height="150" Width="150">
<DockPanel LastChildFill="True">
<Label HorizontalContentAlignment="Center" DockPanel.Dock="Bottom">foo</Label>
<Image Source="bar.png" />
</DockPanel>
</Button>