move files and copy code

from stackoverflow :P
This commit is contained in:
shinichi
2020-10-19 14:53:47 +02:00
parent 84cbcb4a6d
commit 3acdc942bc
8 changed files with 151 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Util
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged = (sender, e) => { };
public void OnPropertyChanged(string name)
{
PropertyChanged(this, new PropertyChangedEventArgs(name));
}
}
}