我有一个设置为水平方向的Stackpanel,而Horizontal Alighment设置为Stretch。在其中我有两个元素:1。TextBlocks 2.图像。我希望第二个显示在最右边。
<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch">
<TextBlock>Hello World</TextBlock>
<Image Height="100" Width="100" />
</StackPanel>
我如何完成它?
答案 0 :(得分:0)
你几乎拥有它。
<Grid>
<TextBlock>Hello World</TextBlock>
<Image Height="100" Width="100" HorizontalAlignment="Right" />
</Grid>
请勿使用StackPanel
。
//祝你好运!