1.登录界面的效果图
2. 登录界面实现的功能描述
超市收银员登录方式,默认收银员登录。
3. 登录界面各控件的参数设置
pictureBox1
属性 |
值 |
image |
WindowsFormsApplacation |
SizeMode |
stretchImage |
label3
comboBox1
属性 |
值 |
DropDownStyle |
DropDownList |
items |
(集合) |
label1
textBox1
label2
textBox2
linkLabel1
button1
button2
4. 重要方法描述
设置默认角色为“收银员”
// 点击“登录”按钮则登录系统
private void button1_Click(object sender, EventArgs e)
{
if (this.comboBox1.SelectedItem.ToString() == "收银员")
{
if (this.textBox1.Text == "123456" && this.textBox2.Text == "654321")
{
MessageBox.Show("收银员登录成功");
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
if (this.comboBox1.SelectedItem.ToString() == "库管员")
{
if (this.textBox1.Text == "654321" && this.textBox2.Text == "123456")
{
MessageBox.Show("库管员登录成功");
}
else
{
MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
5. 需完善的功能
没有注册功能。