如何在运行时重置 WPF 表单的高度并重新居中?

发布于 2024-09-30 05:20:10 字数 583 浏览 2 评论 0原文

我尝试在其 Loaded 事件中重置表单的高度,但表单的位置不再位于屏幕中心。

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    var manualHeight = 0
        + this.MessageRow.ActualHeight
        + this.ButtonsRow.ActualHeight
    ;
    this.Height = manualHeight;

    //What to do to re-center the form?
}

如果您知道该怎么做,请帮忙。非常感谢!

南。

[编辑]

感谢 xandy 的帮助,我在这里重新记下了答案。

var screenHeight += System.Windows.SystemParameters.PrimaryScreenHeight;
window.Top = (screenHeight - manualHeight) / 2;

I try to reset the height of my form in its Loaded event but the position of the form is not centered screen anymore.

private void Window_Loaded(object sender, RoutedEventArgs e)
{
    var manualHeight = 0
        + this.MessageRow.ActualHeight
        + this.ButtonsRow.ActualHeight
    ;
    this.Height = manualHeight;

    //What to do to re-center the form?
}

Please help if you know how to. Great thanks!

Nam.

[Edit]

I re-note the answer here thanks to xandy help.

var screenHeight += System.Windows.SystemParameters.PrimaryScreenHeight;
window.Top = (screenHeight - manualHeight) / 2;

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

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

发布评论

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

评论(1

黎夕旧梦 2024-10-07 05:20:10

手动设置窗口 y 位置为:

window.Top = (screenHeight - manualHeight) / 2;

您可以在此处获取屏幕高度。

manually set the window y position to:

window.Top = (screenHeight - manualHeight) / 2;

where you can have the screenHeight here.

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