2

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

任何想法如何获得绝对值?

非常感谢。

4

3 回答 3

6

那这个呢:

<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属性。

于 2011-12-07T11:17:27.453 回答
5

ActualWidth也会在最大化状态下为您提供宽度。

于 2011-12-07T11:17:05.353 回答
4

使用ActualWidth, 而不是Width.

于 2011-12-07T11:16:22.810 回答