Files
Proftaak-RH-B4/ClientApp/Utils/ObservableObject.cs
shinichi 56de6cfa24 wip
2020-10-14 12:05:28 +02:00

18 lines
440 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace ClientApp.Utils
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { };
public void OnPropertyChanged(string name)
{
PropertyChanged(this, new PropertyChangedEventArgs(name));
}
}
}