2009-11-17から1日間の記事一覧

Nullableへのデータバインド

例えば以下のようなクラスがあったとする。 public class User : INotifyPropertyChanged { private string name; public string Name { get { return this.name; } set { if (this.name != value) { this.name = value; OnPropertyChanged("Name"); } } } p…