コード例 #1
0
ファイル: Item.cs プロジェクト: north0808/haina
 public virtual void OnLostFocus(object sender, ItemEventArgs e)
 {
     if (!this.DisableEvents)
     {
         e.item = this;
         e.Name = this.Name;
         if (this.LostFocus != null)
         {
             this.LostFocus(sender, e);
         }
     }
 }
コード例 #2
0
ファイル: DetailView.cs プロジェクト: north0808/haina
 protected virtual void OnItemLostFocus(object sender, ItemEventArgs e)
 {
     IsEventRunning = true;
     e.Index = this.Items.IndexOf(e.item);
     if (this.ItemLostFocus != null)
     {
         this.ItemLostFocus(this, e);
     }
     IsEventRunning = false;
 }
コード例 #3
0
ファイル: Item.cs プロジェクト: north0808/haina
 public virtual void OnLabelClicked(object sender, ItemEventArgs e)
 {
     if (!this.DisableEvents)
     {
         e.item = this;
         e.Name = this.Name;
         if (this.LabelClicked != null)
         {
             this.LabelClicked(sender, e);
         }
     }
 }