码迷,mamicode.com
首页 > Windows程序 > 详细

01windows窗体程序学习

时间:2016-12-23 01:26:27      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:窗体   ext   win   关闭   end   学习   dial   ogr   use   

 

静态用户名和密码的登录练习

private void button2_Click(object sender, EventArgs e)   
{

textUser.Text = Convert.ToString(textUser.Text);
textBox2.Text = textBox2.Text.ToString();
if (textUser.Text == "admin" && textBox2.Text == "111111")
{
MessageBox.Show("登录成功");
}
else
{
MessageBox.Show("用户名或密码错误");
}

}

 

窗体关闭消息提示的练习

private void Form2_FormClosing(object sender, FormClosingEventArgs e)
{
DialogResult re = MessageBox.Show("确定关闭?","消息",MessageBoxButtons.YesNo);//是否关闭消息提示框
if (re == DialogResult.No)
{
e.Cancel = true; //关闭
}
else
{
e.Cancel = false; //不关闭
}
}

 

01windows窗体程序学习

标签:窗体   ext   win   关闭   end   学习   dial   ogr   use   

原文地址:http://www.cnblogs.com/xcyg/p/6213274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!