如何在WPF中获取工具窗口标题栏的高度?
WPF 将标题栏高度包含在总窗口高度中,而不是仅使用客户端内容区域高度。
- 有没有办法禁用这种行为?
- 如果没有,如何获取工具窗口标题栏的高度?
我知道 SystemParameters.CaptionHeight 属性和 SystemParameters.WindowCaptionHeight 属性,但它们都返回常规窗口标题栏的高度。对于工具窗口来说,这不是正确的值,因为此类窗口的标题栏较小。我需要类似 SystemParameters.ToolWindowCaptionHeight 的东西,
谢谢。
WPF includes the title bar height in the total window height instead of using only the client content area height.
- Is there a way to disable this behaviour?
- If not, how can I get the height of a tool window title bar?
I'm aware of the SystemParameters.CaptionHeight property and the SystemParameters.WindowCaptionHeight property but they both return the height of a regular window title bar. This is not the correct value for a tool window because the title bar is smaller for this type of window. I need something like SystemParameters.ToolWindowCaptionHeight
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
客户区的大小是窗口根元素的实际大小:
The size of the client area is the actual size of the window's root element :
您可以退回到 System.Windows.Forms .SystemInformation.ToolWindowCaptionHeight。尽管它位于 WinForms 命名空间中,但它并不是一个仅 WinForms 的类。
You could fall back to System.Windows.Forms.SystemInformation.ToolWindowCaptionHeight. Although it is in the WinForms namespace, it is hardly a WinForms only class.