WinForms 中的锚==WPF 中的水平(+垂直)对齐?

发布于 2024-08-14 00:58:36 字数 74 浏览 2 评论 0原文

在WPF中找不到锚点属性,它是否被重建为水平和垂直对齐? 是一样的吗? 我想在两侧(左右)扩展我的控制,但它的工作方式与锚定有很大不同

Can't find anchor property in WPF, was it reconstructed to Horizontal and Vertical Alignments?
Is it the same?
I wanted to stretch my control in both sides (right and left), but it worked rather different than anchor

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

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

发布评论

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

评论(3

欲拥i 2024-08-21 00:58:36

你可以像这样做 Anchor 的事情

<...HorizontalAlignment='Stretch' VerticalAlignment='Stretch' Margin='50,50,50,50'.../>

You can do something like Anchor like this

<...HorizontalAlignment='Stretch' VerticalAlignment='Stretch' Margin='50,50,50,50'.../>
紫轩蝶泪 2024-08-21 00:58:36

Windows 窗体的 Anchor 和 Dock 属性被 WPF 中适当的布局容器所取代。根据您的具体需求,您应该能够使用 Grid 或 DockPanel 容器在 WPF 中创建所需的布局。

The Anchor and Dock properties of Windows Forms are replaced by appropriate layouting containers in WPF. Depending on what exactly you need you should be able to create your desired layout in WPF with the Grid or DockPanel containers.

鲜血染红嫁衣 2024-08-21 00:58:36

控件的边缘有白色的小圆圈。单击它们,它们将转换为三角形,这意味着边缘被锚定。

There are small white circles at the edges of the control. Click them, and they will be converted to triangles which mean the edge is anchored.

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