停止对齐边框组件中心的控件

时间:2011-01-07 18:27:01

标签: c# wpf controls border

如何在Border控件中对齐中心停止操作?

我尝试修改属性,但找不到合适的属性,我添加到边框控件的所有内容都在中心对齐...

如何阻止它?

感谢, 乔

1 个答案:

答案 0 :(得分:2)

在边框的子项上设置对齐属性,如下所示:

<Border BorderBrush="Black" 
        BorderThickness="1" 
        Height="100" 
        Width="100">

    <Button Content="Button" 
            Width="50" 
            Height="50" 
            HorizontalAlignment="Right" 
            VerticalAlignment="Bottom"/>

</Border>