Example #1
0
 /// <summary> Try focuse control </summary>
 public void Focus()
 {
     if (OwnerFrame != null)
     {
         OwnerFrame.FocusControl(this);
     }
 }
Example #2
0
 /// <summary> Try focuse control </summary>
 public void Focus()
 {
     if (_IsFocusable && OwnerFrame != null)
     {
         OwnerFrame.FocusControl(this);
     }
 }