WPF 中缺少对接和锚定

发布于 2024-10-14 13:59:02 字数 103 浏览 1 评论 0原文

我没有找到该控件的名为“dock”和“anchor”的属性。如果它不存在,那么我们如何才能拥有每个控件的停靠和锚点属性的味道。这里我如何将控件停靠属性设置为顶部。请讨论。

谢谢

i did not found the control's property called dock and anchor. if it is not there then how we can have the flavor of dock and anchor property of every control. here how could i set a controls dock property to Top. please discuss.

thanks

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

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

发布评论

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

评论(3

裂开嘴轻声笑有多痛 2024-10-21 13:59:02

WPF 中的“停靠”可以通过设置子控件的 Horizo​​ntalAllignment 和 VerticalAllignment 属性来完成。

另一种方法是将控件嵌套在 DockPanel 中,并将 DockPanel.Dock 设置为控件上的顶部。l:

<DockPanel>
    <TextBlock DockPanel.Dock="Top" />
</DockPanel>

WPF 中的“锚定”可以通过设置子项上的 Margin 和/或容器上的 Padding 来完成。

'Docking' in WPF can be done by Setting the HorizontalAllignment and the VerticalAllignment properties of a child control.

An alternative is nesting the control in a DockPanel and setting the DockPanel.Dock to e.g. Top on the control.l:

<DockPanel>
    <TextBlock DockPanel.Dock="Top" />
</DockPanel>

'Anchoring' in WPF can be done by setting the Margin on the child and/or the Padding on the container.

巷雨优美回忆 2024-10-21 13:59:02

我认为您正在了解布局差异。 wpf 框架更多地在其容器上工作。查看本节以获得更多帮助
http://www.wpftutorial.net/Layout.html

i think you are getting at layout differences. The wpf framework works more on it's containers. take a look at this section for more help
http://www.wpftutorial.net/Layout.html

我不吻晚风 2024-10-21 13:59:02

查看 CodePlex 上的 AvalonDock,它非常棒而且免费!

这是入门的链接

check out AvalonDock on CodePlex, it's awesome and free!

here's a link to getting started

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