发布时间:2019-09-16 07:35:21编辑:auto阅读(1647)
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == string.Empty || textBox2.Text == string.Empty)
//此处复习逻辑或关系的编写和如何判别字串为空
{
MessageBox.Show("信息禁止为空!", "登录提示");
//WinForm环境下的弹出对话框
textBox1.Clear();
textBox2.Clear();
textBox2.Focus();
//清空名称和密码文本框,并使得名称文本框获得焦点。
return;
}
if (!textBox1.Text.Equals("admin") || !textBox2.Text.Equals("admin"))
{
MessageBox.Show("用户名称或密码为空!", "登录提示");//WinForm环境下的弹出对话框
textBox1.Clear();//清理文本框的内容
textBox2.Clear();
textBox2.Focus();//清空名称和密码文本框,并使得名称文本框获得焦点。
return;
}
else
{
MessageBox.Show("欢迎您登录本系统!", "消息提示");//WinForm环境下的弹出对话框
textBox1.Clear();
textBox2.Clear();
textBox2.Focus();
}
}
} |
private void button2_Click(object sender, EventArgs e)
{
textBox1.Clear();
textBox2.Clear();
textBox2.Focus();//清空名称和密码文本框,并使得名称文本框获得焦点。
} |
if (textBox1.Text == string.Empty || textBox2.Text == string.Empty)
{
MessageBox.Show("信息禁止为空!","登录提示");
clear();
return;
}
if (!textBox1.Text.Equals("admin") || !textBox2.Text.Equals("admin"))
{
MessageBox.Show("用户名称或密码为空!", "登录提示");
clear();
return;
}
else
{
MessageBox.Show("欢迎您登录本系统!","消息提示");
clear();
}
}
public void clear()
//将具有共性的代码通过方法进行封装以提高执行效率
{
textBox1.Clear();
textBox2.Clear();
textBox2.Focus();
}
} |
属性 |
说明 |
Items |
列表框中的具体项目,需要用户自行编辑 |
SelectionMode |
指示列表框是单项选择,多项选择还是不可选择 |
SelectedIndex |
被选中的行索引,默认第一行为0 |
SelectedItem |
被选中的行文本内容 |
SelectedItems |
ListBox的选择列表集合 |
Text |
默认的文本内容 |
方法 |
说明 |
ClearSelected |
清除当前选择 |
事件 |
说明 |
SelectedIndexChanged |
一旦改变选择即触发该事件 |
private void Form1_Load(object sender, EventArgs e)
{
this.listBox1.Items.Add("软件部");
this.listBox1.Items.Add("硬件部");
this.listBox1.Items.Add("财务部");
this.listBox1.Items.Add("人事部");//通过Add方法实现对下拉列表控件的信息填充工作。
} |
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
MessageBox.Show("您选择的部门是:" + listBox1.SelectedItem.ToString() + ",位列第" + listBox1.SelectedIndex.ToString(), "信息提示");
//注意学习:listBox的SelectedIndex属性代表选中的行数
//注意学习:listBox的SelectedItem属性代表选中的行信息内容
} |
属性 |
说明 |
DropDownStyle |
ComboBox 控件的样式 |
MaxDropDownItems |
下拉区显示的最大项目数 |
方法 |
说明 |
Select |
在 ComboBox 控件上选定指定范围的文本 |
上一篇: python编程技巧——转载
下一篇: 计算机达人成长之路(3)连载
47842
46390
37281
34733
29313
25973
24914
19951
19544
18030
5792°
6413°
5927°
5961°
7064°
5911°
5944°
6438°
6404°
7778°