コード例 #1
0
ファイル: FocusableControl.cs プロジェクト: TagsRocks/skill
 /// <summary> Try focuse control </summary>
 public void Focus()
 {
     if (OwnerFrame != null)
     {
         OwnerFrame.FocusControl(this);
     }
 }
コード例 #2
0
 /// <summary> Try focuse control </summary>
 public void Focus()
 {
     if (_IsFocusable && OwnerFrame != null)
     {
         OwnerFrame.FocusControl(this);
     }
 }