如何在metro应用程序中的stackpanel上对齐图像内容

时间:2015-01-29 06:17:53

标签: winrt-xaml stackpanel

我有一个设置为水平方向的Stackpanel,而Horizo​​ntal Alighment设置为Stretch。在其中我有两个元素:1。TextBlocks 2.图像。我希望第二个显示在最右边。

<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch">
    <TextBlock>Hello World</TextBlock>
    <Image Height="100" Width="100" />
</StackPanel>

我如何完成它?

1 个答案:

答案 0 :(得分:0)

你几乎拥有它。

<Grid>
    <TextBlock>Hello World</TextBlock>
    <Image Height="100" Width="100" HorizontalAlignment="Right" />
</Grid>

请勿使用StackPanel

//祝你好运!