1 //限定用户名必须为字母 2 PRivate void txtName_KeyPress(object sender, KeyPressEventArgs e) 3 { 4 if ((e.KeyChar >= 'a' && e.KeyChar <= 'z') || (e.KeyChar >= 'A' && e.KeyChar <= 'Z')) 5 { 6 e.Handled = false; 7 } 8 else { 9 MessageBox.Show("用户名只能为字母!");10 e.Handled = true;11 }12 }
1 //光标进入文本框时,背景为蓝色,字体为白色; 2 //光标离开文本框时,背景为白色,字体为黑色。 3 private void txtName_Enter(object sender, EventArgs e) 4 { 5 txtName.ForeColor = Color.White; 6 txtName.BackColor = Color.Blue; 7 } 8 9 private void txtName_Leave(object sender, EventArgs e)10 {11 txtName.BackColor = Color.White;12 txtName.ForeColor = Color.Black;13 }
3.当输入用户名“admin”和密码“123”之后,单击”确定“按钮,系统将弹出消息框以显示输入正确,否则显示用户名或密码错误的提示信息。
1 private void btnLogin_Click(object sender, EventArgs e) 2 { 3 string userName = txtName.Text; 4 string passWord = txtPwd.Text; 5 if (userName == "admin" && password == "123") 6 { 7 MessageBox.Show("欢迎进入个人理帐系统!", "登陆成功!", MessageBoxButtons.OK, MessageBoxIcon.Information); 8 } 9 else10 {11 MessageBox.Show("您输入的用户名或密码错误!", "登录失败!", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);12 }13 }
4.单击”取消“按钮,清除输入信息,并将光标定位在txtName文本框中。
1 private void btnCancel_Click(object sender, EventArgs e)2 {3 txtName.Text = "";4 txtPwd.Text = "";5 txtName.Focus();6 }
Notice:
新闻热点
疑难解答