最大化された 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
ます。