WPF 中缺少对接和锚定
我没有找到该控件的名为“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WPF 中的“停靠”可以通过设置子控件的 HorizontalAllignment 和 VerticalAllignment 属性来完成。
另一种方法是将控件嵌套在 DockPanel 中,并将 DockPanel.Dock 设置为控件上的顶部。l:
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:
'Anchoring' in WPF can be done by setting the Margin on the child and/or the Padding on the container.
我认为您正在了解布局差异。 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
查看 CodePlex 上的 AvalonDock,它非常棒而且免费!
这是入门的链接
check out AvalonDock on CodePlex, it's awesome and free!
here's a link to getting started