&tag(INotifyPropertyChanged);
namespace System.ComponentModel
{
// 概要:
// プロパティ値が変更されたことをクライアントに通知します。
public interface INotifyPropertyChanged
{
// 概要:
// プロパティ値が変更されたときに発生します。
event PropertyChangedEventHandler PropertyChanged;
}
}