WPF INotifyPropertyChanged 两种方式绑定奇怪的动作

WPF INotifyPropertyChanged two way binding strange action

我按照许多线程的建议实现了 INotifyPropertyChanged
实施 1

public class Notifier : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    public void OnPropertyChanged(string pName)
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(pName));
    }
}

public class Model : Notifier, IDataErrorInfo
{
    private string name;

    public string Name
    {
        get { return name; }
        set { name = value; OnPropertyChanged("name_changed"); }
    }
}

视图模型由模型和更改模型属性的命令组成。

public class ViewModel : Notifier
{
    private Model _model;

    public Model Model
    {
        get { return _model; }
        set { _model = value; OnPropertyChanged("model_changed"); }
    }

    private ICommand _cmd;

    public ICommand Command
    {
        get { return _cmd; }
        set { _cmd = value; }
    }

    public void ExecuteCommand(object para)
    {
        Console.WriteLine("Command executed");
        Model.Name = "new name";
    }
}

VM 然后绑定到视图。

<TextBox HorizontalAlignment="Center" VerticalAlignment="Center"  Width="100">
    <TextBox.Text>
        <Binding Path="Model.Name" Mode="TwoWay" NotifyOnValidationError="True" UpdateSourceTrigger="PropertyChanged" ValidatesOnDataErrors="True">
            <Binding.ValidationRules>
                <ExceptionValidationRule></ExceptionValidationRule>                
            </Binding.ValidationRules>
        </Binding>
    </TextBox.Text>
</TextBox>

执行命令时,TextBox 不会更新为新值。
但是,如果我执行 INotifyPropertyChanged like this 指令,则绑定有效。
实施 2

public class Notifier : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;

    protected bool SetProperty<T>(ref T field, T newValue, [CallerMemberName]string propertyName = null)
    {
        if (!EqualityComparer<T>.Default.Equals(field, newValue))
        {
            field = newValue;
            PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
            return true;
        }
        return false;
    }
}

public class Model : Notifier, IDataErrorInfo
{
    private string name;

    public string Name
    {
        get { return name; }
        set { SetProperty(ref name, value); }
    }
}

第一种方法漏了什么?

请像这样添加属性名称。

public class Model : Notifier, IDataErrorInfo
{
    private string name;

    public string Name
    {
        get { return name; }
        set { name = value; OnPropertyChanged("Name"); }
    }
}

实施 1 的主要问题是您的 OnPropertyChanged 方法的字符串参数需要与要更改的 属性 名称完全相同。对于您的两个示例,"model_changed" 应更改为 "Model" "name_changed" 应该读作 "Name"。这里有两种很棒的技术可以减少键入文字字符串名称时潜在的人为错误:

1.使用 CallerMemberName 属性

如果您被允许并有权访问 System.Runtime.CompilerServices 命名空间,您可以这样编写您的基础 class 以使 属性 名称自动作为字符串参数传递给OnPropertyChanged方法:

using System.ComponentModel;
using System.Runtime.CompilerServices;

public class Notifier : INotifyPropertyChanged
{
    public event PropertyChangedEventHandler PropertyChanged;
    public void OnPropertyChanged([CallerMemberName] string pName = "")
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(pName));
    }
}

然后您只需在 属性 的 getter 中调用 OnPropertyChanged()

2。使用nameof关键字

或者,您可以简单地用 nameof(<InsertPropertyNameHere>) 替换文字类型的 属性 名称,这将 return 名称没有任何错误输入的风险,就像这个例子:

public class Model : Notifier, IDataErrorInfo
{
    private string name;

    public string Name
    {
        get { return name; }
        set { name = value; OnPropertyChanged(nameof(Name)); }
    }
}