2017270309 徐王旗

1.登陆界面

捕获.PNG

2.功能描述

管理员与收银员分开登陆,不同的用户名和密码,窗口不能被放大或缩小。

3.登陆界面参数设置

Form1

属性
MaximizeBox False
MinimizeBox False
FormBorderStyle FixedSingle

pictureBox

属性
Image WindowsFormsApplication1.Properties.Resources._1712864_a915d2acaa27d535
SizeMode StretchImage

comboBox

属性
DropDownStyle DropDownList
items (集合)
Tabindex 4

texBox2

属性
Password *
Tabindex 2

Lable1

属性
Name 用户类型

Lable2

属性
Name 用户名

Lable3

属性
Name 密码

LinkLable

属性
Name 忘记密码?

Button1

属性
Name 登陆

Button2

属性
Name 退出

4.重要方法描述

登陆时默认收银员

this.comboBox1.Text = "收银员"

点击退出时关闭窗口

 Application.Exit();

登陆时的用户名和密码设置,登陆错误提示。

            {
                if (this.textBox1.Text == "123456" && this.textBox2.Text == "123456")
                {
                    MessageBox.Show("收银员登录成功");
                }
                else
                {
                    MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }

            if (this.comboBox1.SelectedItem.ToString() == "管理员")
            {
                if (this.textBox1.Text == "admin" && this.textBox2.Text == "admin")
                {
                    MessageBox.Show("管理员登录成功");
                }
                else
                {
                    MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }

5.还需完善的功能

让窗口在被拉缩时,界面自动适应。在输错密码5次后提示5分钟后再输入。

你可能感兴趣的:(2017270309 徐王旗)