Create NotifyObject.cs
This commit is contained in:
Родитель
d1b2d700d3
Коммит
34e172589a
|
@ -0,0 +1,12 @@
|
||||||
|
using System.ComponentModel;
|
||||||
|
|
||||||
|
namespace LanguageEditor
|
||||||
|
{
|
||||||
|
public class NotifyObject : INotifyPropertyChanged
|
||||||
|
{
|
||||||
|
public event PropertyChangedEventHandler PropertyChanged;
|
||||||
|
|
||||||
|
public void Notify(string propertyName)
|
||||||
|
=> PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||||
|
}
|
||||||
|
}
|
Загрузка…
Ссылка в новой задаче