如何在 Metro 应用程序中对齐堆栈面板上的图像内容
How to align image content on stackpanel in metro app
我有一个设置为水平方向的 Stackpanel,水平对齐设置为拉伸。在其中我有两个元素:1. TextBlocks 2. Image。我想让第二个显示在最右边。
<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch">
<TextBlock>Hello World</TextBlock>
<Image Height="100" Width="100" />
</StackPanel>
如何完成?
你几乎成功了。
<Grid>
<TextBlock>Hello World</TextBlock>
<Image Height="100" Width="100" HorizontalAlignment="Right" />
</Grid>
只是不要使用 StackPanel
。
// 祝你好运!
我有一个设置为水平方向的 Stackpanel,水平对齐设置为拉伸。在其中我有两个元素:1. TextBlocks 2. Image。我想让第二个显示在最右边。
<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch">
<TextBlock>Hello World</TextBlock>
<Image Height="100" Width="100" />
</StackPanel>
如何完成?
你几乎成功了。
<Grid>
<TextBlock>Hello World</TextBlock>
<Image Height="100" Width="100" HorizontalAlignment="Right" />
</Grid>
只是不要使用 StackPanel
。
// 祝你好运!