Exemplo n.º 1
0
 /// <summary>
 /// Perform key up handling.
 /// </summary>
 /// <param name="e">A KeyEventArgs that contains the event data.</param>
 public virtual void KeyUp(KeyEventArgs e)
 {
     // Tell current view of key event
     if (ActiveView != null)
     {
         MouseCaptured = ActiveView.KeyUp(e);
     }
     else if (_root != null)
     {
         MouseCaptured = _root.KeyUp(e);
     }
 }