示例#1
0
 /// <summary>
 /// ItemPropertyChangedイベントが発生するときに呼び出されるメソッドです。
 /// </summary>
 /// <param name="e"></param>
 protected void OnItemPropertyChanged(CustomDictionaryEventArgs e)
 {
     if (this.ItemPropertyChanged != null)
     {
         this.ItemPropertyChanged(this, e);
     }
 }
示例#2
0
 void AfterInsert(object sender, CustomDictionaryEventArgs e)
 {
     this.m_Changed = true;
 }