有什么办法可以自动将 Auto 属性转换为 Notify Property 吗?
INotifyPropertyChanged
或 WPF 中 MVVM 的任何其他方式
public string Filename { get; set; }
至
string _Filename;
public string Filename {
get { return _Filename; }
set {
if (PropertyChanged != null) {
_Filename = value;
PropertyChanged(this, new PropertyChangedEventArgs("Filename"));
}
}
}