2.6密码修改界面功能设计

一.密码修改界面

(1).结果展示

image.png

二. 登陆界面各控件的参数设置

控件A:Lable

属性
Lable1 用户名
Lable2 新密码
Lable3 确认密码

控件B:TextBox

属性
TextBox1 空白值(可输入值)
TextBox2 空白值(可输入值)
TextBox3 空白值(可输入值)

控件C:Button

属性
Button1 确定
Button2 取消

三. 界面设计

1. 用户通过点击主界面上的"修改密码"菜单,打开修改密码界面

     private void tsmi_Password_Click(object sender, EventArgs e)
    {
        PwdForm pwdForm = new PwdForm();
        pwdForm.MdiParent = this;
        pwdForm.StartPosition = FormStartPosition.CenterScreen;
        pwdForm.Show();
    }

2. 密码修改界面上,默认显示出当前登录的用户名

    private void PwdForm_Load(object sender, EventArgs e)
    {
        this.tb_User.Text = UserInfo.userName;
    }

四. 实现密码修改界面的密码修改功能

  String connStr = "Data Source=.;Initial Catalog=SuperMarketSales;Integrated Security=True";
        SqlConnection sqlConn = new SqlConnection(connStr);
        try
        {
            // 连接数据库
            sqlConn.Open();

            // 构造命令
            String sqlStr = "update EMPLOYEE set PASSWORD=@pwd where ID=@id";
            SqlCommand cmd = new SqlCommand(sqlStr, sqlConn);

            // SQL字符串参数赋值
            cmd.Parameters.Add(new SqlParameter("@pwd", newPwd));
            cmd.Parameters.Add(new SqlParameter("@id", UserInfo.userId));

            // 将命令发送给数据库
            int res = cmd.ExecuteNonQuery();

            // 根据返回值判断是否修改成功
            if (res != 0)
            {
                MessageBox.Show("密码修改成功");
                this.Close();
            }
            else
            {
                MessageBox.Show("密码修改错误");
            }
        }
        catch (Exception exp)
        {
            MessageBox.Show("访问数据库错误:" + exp.ToString());
        }
        finally
        {
            sqlConn.Close();
        }
    }

五.修改密码界面细节设计代码

      // 在“新密码”输入框中按“回车”,光标跳转到“确认密码”输入框
        private void tb_NewPwd_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.KeyChar == (char)Keys.Enter)
        {
            SendKeys.Send("{tab}");
        }
    }

    // 在“确认密码”输入框中按“回车”,则直接修改密码
    private void tb_ConfirmPwd_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.KeyChar == (char)Keys.Enter)
        {
            this.bt_Ok_Click(sender, e);
        }
    }
}

你可能感兴趣的:(2.6密码修改界面功能设计)