Beispiel #1
0
 protected virtual void OnEnterItem(DockItemEventArgs e)
 {
     if (EnterItem != null)
     {
         EnterItem(this, e);
     }
 }
Beispiel #2
0
 protected virtual void OnSelectItem(DockItemEventArgs e)
 {
     if (SelectItem != null)
     {
         SelectItem(this, e);
     }
 }
Beispiel #3
0
        private void DoEnterItem(DockItem item)
        {
            DockItemEventArgs e = new DockItemEventArgs(item, MouseButtons.None);

            OnEnterItem(e);
        }
Beispiel #4
0
        private void DoSelectItem(DockItem item, MouseButtons button)
        {
            DockItemEventArgs e = new DockItemEventArgs(item, button);

            OnSelectItem(e);
        }