This commit is contained in:
shinichi
2020-10-14 12:05:28 +02:00
parent 3822508b4c
commit 56de6cfa24
11 changed files with 191 additions and 17 deletions

View File

@@ -7,6 +7,11 @@ namespace ClientApp.Utils
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { };
public void OnPropertyChanged(string name)
{
PropertyChanged(this, new PropertyChangedEventArgs(name));
}
}
}