有关c#中MessageBox控件的问题?
我是c#初学者。做一个登录页面,有用户名(textBox),密码(textBox),和登录类型(comboBox),登录(button),取消(button)这几个控件!...
我是c#初学者。
做一个登录页面,
有用户名(textBox),密码(textBox),和登录类型(comboBox),登录(button),取消(button)
这几个控件!
如何实现以下功能:
点击登录,如果用户名为空,或者密码为空,或者没有选择登录状态,都弹出一个MessageBox来提示用户! 展开
做一个登录页面,
有用户名(textBox),密码(textBox),和登录类型(comboBox),登录(button),取消(button)
这几个控件!
如何实现以下功能:
点击登录,如果用户名为空,或者密码为空,或者没有选择登录状态,都弹出一个MessageBox来提示用户! 展开
2个回答
展开全部
if (this.username.Text.Trim() == "")
{
MessageBox.Show("用户帐户不能为空!", "温馨提示",MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Focus();
return;
}
if (this.pwd.Text.Trim() == "")
{
MessageBox.Show("密码不能为空!", "温馨提示",MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Focus();
return;
}
username和pwd换成你的控件名就行了.
{
MessageBox.Show("用户帐户不能为空!", "温馨提示",MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Focus();
return;
}
if (this.pwd.Text.Trim() == "")
{
MessageBox.Show("密码不能为空!", "温馨提示",MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Focus();
return;
}
username和pwd换成你的控件名就行了.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询