WPF 功能区窗口 - 不带调整大小样式
我的 WPF 功能区窗口底部有一个奇怪的边框。仅当我将 RibbonWindow 的 ResizeMode 设置为 NoResize 时才会出现这种情况。如何去掉底部的线?
There is a weird border at the bottom of my WPF Ribbon Window. It only occurs when I set the RibbonWindow's ResizeMode to NoResize. How do I get rid of the line at the bottom?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我无法用我的版本重现此问题,但我会尝试在 RibbonWindow 的加载事件之后将 ResizeMode 设置为 NoResize。它应该确保在设置值之前已经完成第一次布局。
I can't reproduce this right with my version, but I would try to set the ResizeMode to NoResize after the loaded-event of the RibbonWindow. It should ensure that a first layout pass has been done before setting the value.
确保
RibbonWindow
的WindowStyle
属性设置为SingleBorderWindow
。希望有帮助。Ensure that
WindowStyle
property of theRibbonWindow
is set asSingleBorderWindow
. Hope that helps.