コード例 #1
0
 public void EndKeyboardCapture()
 {
     if (text_input != null)
     {
         text_input.Dispose(true);
         text_input = null;
     }
 }
コード例 #2
0
 public void StartKeyboardCapture()
 {
     if (text_input == null)
     {
         text_input = new textInput(targetform.Handle);
         // ...4-02-06
     }
     else
     {
         //already started
     }
 }
コード例 #3
0
 InteractionRequests.Add( textInput );$endif$$if$ ($enableOpenFile$ == true)
コード例 #4
0
ファイル: UserInterface.cs プロジェクト: GreggBzz/Outerspace
 public void StartKeyboardCapture()
 {
     if (text_input == null)
     {
         text_input = new textInput(targetform.Handle);
         // ...4-02-06
     }
     else
     {
         //already started
     }
 }
コード例 #5
0
ファイル: UserInterface.cs プロジェクト: GreggBzz/Outerspace
 public void EndKeyboardCapture()
 {
     if (text_input != null)
     {
         text_input.Dispose(true);
         text_input = null;
     }
 }