gpt4 book ai didi

wpf - 在 ViewModel 中获取窗口属性

转载 作者:行者123 更新时间:2023-12-04 06:25:51 39 4
gpt4 key购买 nike

我正在构建一个 WPF 应用程序,我需要从我的 View 模型中获取窗口的宽度、高度和位置。我正在使用以下 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>

在我的 View 模型中,Top、Left 的值工作正常,但是 Width 和 Height 属性都是 NaN。对于我绑定(bind)的每个属性,我都有这样的属性:
private double height;

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

知道为什么这些值会返回 NaN 吗?更重要的是,我能做些什么来获得我正在寻找的值(value)?

编辑:我意识到这有点不对劲,但我需要从 View 模型中捕获应用程序的屏幕截图。 View 模型包含我没有粘贴的其他属性,但它们是实现所需功能所必需的。出于好奇,以下是我捕获屏幕的方法:
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
}

最佳答案

正如 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 推送到 View 模型。在您的情况下,用法如下所示
<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

关于wpf - 在 ViewModel 中获取窗口属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7653566/

39 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com