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 に答える