15. BindableBaseクラス
INotifyPropertyChangedインターフェースの実装クラス
class Person : BindableBase
{
private string name;
public string Name
{
get { return this.name; }
set { this.SetProperty(ref this.name, value); }
}
private int age;
public int Age
{
get { return this.age; }
set { this.SetProperty(ref this.age, value); }
}
}