2018-11-29

2018-11-30  本文已影响0人  偏执_d677

任务2.6
密码修改界面功能设计
一.gif文件

gfg.gif
二.画面主要功能及数据库表结构
控件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();
 }
  1. 显示出当前登录用户名
 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);
        }
    }
}
上一篇下一篇

猜你喜欢

热点阅读