Is there any way to convert the Auto property to automatically notify the property?
INotifyPropertyChanged
Or any other way for MVVM in WPF
public string Filename { get; set; }
For
string _Filename; public string Filename { get { return _Filename; } set { if (PropertyChanged != null) { _Filename = value; PropertyChanged(this, new PropertyChangedEventArgs("Filename")); } } }
c # properties visual-studio wpf mvvm
Omid mafakher
source share