AutoプロパティをNotifyPropertyに自動的に変換する方法はありますか?
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"));
}
}
}