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

发布于 2024-10-10 13:42:59 字数 101 浏览 1 评论 0原文

如何阻止边框控件内的中心对齐?

我尝试修改属性,但找不到正确的属性,并且我添加到边框控件的所有内容都居中对齐...

如何阻止它?

谢谢, 乔

How can I make stop things from aligning center inside a Border control?

I tried to modify the properties, but couldn't find the right one and everything I add to the Border Control is aligned centerly...

how to stop it?

thanks,
Joe

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮是我掰弯的 2024-10-17 13:42:59

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

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

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

</Border>

set alignment properties on the border's child like this:

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

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

</Border>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文