Example #1
0
 /// <summary>
 /// Perform lost focus handling.
 /// </summary>
 public virtual void LostFocus()
 {
     // Tell current view of source event
     if (ActiveView != null)
     {
         ActiveView.LostFocus(_control);
     }
     else if (_root != null)
     {
         _root.LostFocus(_control);
     }
 }