在 WPF 中获取最大化时的窗口大小

发布于 2024-12-19 20:57:14 字数 70 浏览 3 评论 0原文

我正在寻找一种方法来获取最大化 WPF 窗口的宽度属性。

有什么想法如何获得绝对值吗?

多谢。

i search for a way to get the Width-Property of an Maximized WPF Window.

Any Ideas how can i get the absolute value?

Thanks a lot.

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

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

发布评论

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

评论(3

九命猫 2024-12-26 20:57:14

怎么样:

<Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Label Content="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}, Mode=FindAncestor}, Path=ActualWidth}"></Label>
    </Grid>
</Window>

只需使用 ActualWidth 属性即可。

What about this:

<Window x:Class="MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Label Content="{Binding RelativeSource={RelativeSource AncestorType={x:Type Window}, Mode=FindAncestor}, Path=ActualWidth}"></Label>
    </Grid>
</Window>

Just use the ActualWidth property.

皓月长歌 2024-12-26 20:57:14

ActualWidth 将为您提供最大化状态下的宽度。

ActualWidth will give you the width also in maximized state.

宣告ˉ结束 2024-12-26 20:57:14

使用ActualWidth,而不是Width

Use ActualWidth, instead of Width.

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