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; } }
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; } }