Пример #1
0
 private void codeText_Enter(object sender, EventArgs e)
 {
     if (!GlobalVariables.isKeyBoardExist)
     {
         KeyBoard kb = new KeyBoard(codeText, null, null);
         this.kb = kb;
         kb.Show();
         GlobalVariables.isKeyBoardExist = true;
     }
 }
Пример #2
0
 private void Show_KeyBoard(object sender, EventArgs e)
 {
     if (!GlobalVariables.isKeyBoardExist)
     {
         KeyBoard kb = new KeyBoard(this.ID, this.Pwd, this.URL);
         this.kb = kb;
         kb.Show();
         GlobalVariables.isKeyBoardExist = true;
     }
 }