だるろぐ

明日できることは、今日しない。

2012-03-16から1日間の記事一覧

Notify Property Weaver で楽ちんに INotifyPropertyChanged を実装する

INotifyPropertyChanged の実装って面倒じゃないですか。 public class Person : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public string GivenNames { get; set; } public string FamilyName { get; set; } pu…