我搜索获取最大化WPF窗口的宽度属性的方法。
任何想法我怎样才能获得绝对值?
非常感谢。
答案 0 :(得分:5)
ActualWidth也会在最大化状态下为您提供宽度。
答案 1 :(得分:5)
这个怎么样:
<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
属性。
答案 2 :(得分:3)
使用ActualWidth
代替Width
。