如何在左侧或右侧浮动标签内的元素,就像我们在html中那样?

时间:2013-11-01 20:46:22

标签: c# wpf xaml

我正在使用WPF网格控件,对于布局..而在第2行,第2列我想在该单元格中放置两个按钮,但不使用定位属性..

<Button Content="Confirm" MinWidth="80" Margin="3" Grid.Row="2" Grid.Column="2" HorizontalAlignment="Right" />
<Button Content="Cancel" MinWidth="80" Margin="3" HorizontalAlignment="Right" Grid.Row="2" Grid.Column="2" />

在此示例中,两个按钮都是一个放在另一个上面。

1 个答案:

答案 0 :(得分:3)

将它们放在StackPanel

<StackPanel Grid.Row="2" Grid.Column="2" Orientation="Horizontal">
    <Button Content="Confirm" MinWidth="80" Margin="3" />
    <Button Content="Cancel" MinWidth="80" Margin="3" />
</StackPanel>