在ViewModel中获取窗口属性

时间:2011-10-04 20:22:21

标签: wpf xaml mvvm

我正在构建一个WPF应用程序,我需要从视图模型中获取窗口的宽度,高度和位置。我正在使用以下XAML:

<Window x:Class="ScreenCapture.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        mc:Ignorable="d"
        Height="{Binding Height, Mode=OneWayToSource, FallbackValue=300}"
        Width="{Binding Width, Mode=OneWayToSource, FallbackValue=300}"
        Title="MVVM Light Application"
        Top="{Binding Top, Mode=OneWayToSource}"
        Left="{Binding Left, Mode=OneWayToSource}"
        DataContext="{Binding Main, Source={StaticResource Locator}}">
    <Window.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Skins/MainSkin.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Window.Resources>

    <Grid x:Name="LayoutRoot">
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="13*" />
            <ColumnDefinition Width="265*" />
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition Height="25" />
        </Grid.RowDefinitions>
        <TextBlock FontSize="36"
                   FontWeight="Bold"
                   Foreground="Purple"
                   Text="{Binding Welcome}"
                   VerticalAlignment="Center"
                   HorizontalAlignment="Center"
                   TextWrapping="Wrap" Grid.Column="1" Margin="19,70,32,70" />
        <Button Grid.Row="1" Content="Capture" Grid.ColumnSpan="2" Command="{Binding Capture}" />
    </Grid>
</Window>

在我的视图模型中,Top,Left的值工作正常,但是Width和Height属性都是NaN。对于我绑定的每个属性,我都有这样的属性:

private double height;

public double Height
{
    set
    {
        height = value;
    }
}

知道价值回归NaN的原因吗?更重要的是,我能做些什么来获得我正在寻找的价值?

编辑:我意识到这有点偏,但我需要从视图模型中捕获应用程序的屏幕截图。视图模型包含我未粘贴的其他属性,但是为了实现所需的功能是必需的。对于好奇,下面是我捕捉屏幕的方法:

private void CaptureScreen()
{
    int x = Convert.ToInt32(left);
    int y = Convert.ToInt32(top);
    int w = Convert.ToInt32(width);
    int h = Convert.ToInt32(height);
    Bitmap image = new Bitmap(w, h);
    Graphics graphics = Graphics.FromImage(image);

    graphics.CopyFromScreen(x, y, x, y, new Size(w, h), CopyPixelOperation.SourceCopy);

    // Do something with the image
}

2 个答案:

答案 0 :(得分:10)

正如 mzabsky 所说,您需要使用ActualWidthActualHeight。这里的问题是它们是只读的,你不能在只读的依赖属性上做OneWayToSource Binding

然而,有一些解决方法 请参阅以下问题:Pushing read-only GUI properties back into ViewModel

Kent Boogaart 提供的附加行为可让您这样做

<Window ...
        SizeObserver.Observe="True"
        SizeObserver.ObservedWidth="{Binding Width, Mode=OneWayToSource}"
        SizeObserver.ObservedHeight="{Binding Height, Mode=OneWayToSource}">

或者您可以尝试我为此创建的名为PushBinding的解决方案,该解决方案可用于将只读DP推送到viewmodel。在您的情况下,用法看起来像这样

<Window ...>
    <pb:PushBindingManager.PushBindings> 
        <pb:PushBinding TargetProperty="ActualHeight" Path="Height"/> 
        <pb:PushBinding TargetProperty="ActualWidth" Path="Width"/>
    </pb:PushBindingManager.PushBindings> 
</Window> 

如果您有兴趣,可以使用PushBinding下载演示项目:https://www.dropbox.com/s/eqkmsp0q7hb568z/PushBindingInStyleDemo.zip?dl=0

答案 1 :(得分:2)

您应该使用ActualWidthActualHeight作为绑定目标,以获得源绑定的一种方式,而不是高度和宽度 - 这些是所需的大小,而不是实际大小。除非您专门将它们设置为某个值,否则宽度和高度为NaN。

当然,另一个问题是,这似乎不适合使用视图模型。