如何在WPF中获取工具窗口标题栏的高度?

发布于 2024-08-24 03:51:40 字数 305 浏览 4 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

涫野音 2024-08-31 03:51:40

客户区的大小是窗口根元素的实际大小:

public double ClientWidth
{
    get { return ((FrameworkElement)this.Content).ActualWidth; }
}

public double ClientHeight
{
    get { return ((FrameworkElement)this.Content).ActualHeight; }
}

The size of the client area is the actual size of the window's root element :

public double ClientWidth
{
    get { return ((FrameworkElement)this.Content).ActualWidth; }
}

public double ClientHeight
{
    get { return ((FrameworkElement)this.Content).ActualHeight; }
}
野味少女 2024-08-31 03:51:40

您可以退回到 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.

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