public void txtIDClass_KeyPress(object sender, KeyPressEventArgs e) { if (!GarenaViewModel._checkCharacterChar(e.KeyChar)) { e.Handled = true; ((TextBox)sender).Focus(); string _STRMesge = "Không được nhập ký tự số, chỉ được nhập chữ."; MessageBox.Show(_STRMesge, "Thông báo ", MessageBoxButtons.OK, MessageBoxIcon.Information); } }
public bool _checkCharacterNumberSubject(char _C) { return(GarenaViewModel._checkCharacterNumber(_C)); }
public bool _checkCharacterCharClass(char _C) { return(GarenaViewModel._checkCharacterChar(_C)); }
public bool _checkCharacterCharStudent(char _C) { return(GarenaViewModel._checkCharacterChar(_C)); }
public bool _checkCharacterCharProject(char _C) { return(GarenaViewModel._checkCharacterChar(_C)); }
public bool _checkCharacterCharFaculty(char _C) { return(GarenaViewModel._checkCharacterChar(_C)); }