美文网首页
商超登陆界面设计

商超登陆界面设计

作者: GIA丶 | 来源:发表于2018-10-21 21:27 被阅读0次

    一.界面图

    QQ图片20181021211516.png

    二.登陆界面功能

    1、登陆界面出现在屏幕正中央,并不可被放大或缩小。
    2、支持收银员合库管员登陆。
    3、输入密码时会通过字符隐藏。

    三.登陆界面控件参数

    14080488-f6a9cf0d3852c855.png

    四.重要方法描述

    //设置默认用户类型为收银员
    private void Form1_Load_1(object sender, EventArgs e)
    {
    this.comboBox1.SelectedIndex = 0;
    }
    点击登录时判断用户类型、用户名以及密码是否正确并提示,以及点击退出后退出窗体
    通过button的click事件实现

    private void button1_Click(object sender, EventArgs e)
    {
    if (comboBox1.Text == "收银员")
    {
    if (textBox1.Text == "123" && textBox2.Text == "123")
    MessageBox.Show("收银员登录成功", "提示", MessageBoxButtons.OKCancel);
    else
    MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);
    }
    if(comboBox1.Text == "库管员")
    if (textBox1.Text == "233" && textBox2.Text == "123456")
    MessageBox.Show("库管员登录成功", "提示", MessageBoxButtons.OKCancel);
    else
    MessageBox.Show("用户名或密码错误", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Error);

        }
    

    private void button2_Click(object sender, EventArgs e)
    {
    Application.Exit();
    }
    根据Tab键顺序按回车以选中顺序后一个,选中密码框回车时等于点击登录
    调整Tab键顺序并通过keypress以及Enter事件来设置

    private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
    if (e.KeyChar == (char)Keys.Enter)
    {
    SendKeys.Send("{tab}");
    }
    }

        private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)Keys.Enter)
            {
                this.button1_Click(sender, e);
            }
        }
    
        private void textBox2_Enter(object sender, EventArgs e)
        {
            ((TextBox)sender).SelectAll();
        }
    

    五.效果图

    14080488-93542768005e3007.png
    14080488-3acf94e7c4c314e4.png

    相关文章

      网友评论

          本文标题:商超登陆界面设计

          本文链接:https://www.haomeiwen.com/subject/rvsizftx.html