gpt4 book ai didi

c# - PropertyChanged 未按预期工作

转载 作者:行者123 更新时间:2023-12-03 10:33:08 27 4
gpt4 key购买 nike

我目前正在尝试使用更改的 Fody 属性创建一个带有 MVVM 的 WPF 项目。

<Window x:Class="TestMVVM.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"
xmlns:local="clr-namespace:TestMVVM"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525"
DataContext="{x:Static local:MainWindowViewModel.Instance}"
x:Name="WindowElement">

<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Text, Mode=TwoWay}" />
<Button Content="Browse" Command="{Binding WSDLBrowseClick}"/>
</StackPanel>
public static class Model
{
public static string text { get; set; }
}

public class MainWindowViewModel : INotifyPropertyChanged
{

public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { };

public static MainWindowViewModel Instance => new MainWindowViewModel();

public string Text { get; set; }
/*
{
get { return Model.text; }
set
{
if (value == Text)
return;

Model.text = value;

PropertyChanged(this, new PropertyChangedEventArgs("Text"));
}
}*/

public ICommand WSDLBrowseClick { get; set; }


public MainWindowViewModel()
{
WSDLBrowseClick = new RelayCommand(BrowseWSDL);
}


private void BrowseWSDL()
{
Text = "Test";
}
}

基本上,当我单击按钮时,我希望 TextBlock 显示“测试”文本。 Click-Command 被执行,但 TextBlock 的文本没有改变。我想将属性 Text 用作保持文本 block 最新的本地内存,以便稍后将值发送到 model.text 并在那里使用它。但它只有在我使用我当前注释掉的代码时才有效。 fody weaver 不应该为我做同样的事情吗(只是他创建了另一个私有(private)变量而不是使用 model.text)?

最佳答案

我设法通过添加 <PropertyChanged/> 使其工作到我的 FodyWeavers.xml

关于c# - PropertyChanged 未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47219954/

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