我正在寻找一种方法来获取最大化 WPF 窗口的宽度属性。
任何想法如何获得绝对值?
非常感谢。
那这个呢:
<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
属性。
ActualWidth也会在最大化状态下为您提供宽度。
使用ActualWidth
, 而不是Width
.