using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace LYFZ.Software.MainBusiness.MembershipManage.SuperSmallForm { public partial class EnterPasswordSuperSmallForm : LYFZ.Software.UI.MembershipManage.SuperSmallForm.EnterPasswordSuperSmallForm { public EnterPasswordSuperSmallForm() { } /// /// 窗体要显示的中文名 /// public string Pwd = ""; /// /// 是否保存 /// public bool IsSaveed = false; public string StrWindowText = "请输入密码"; /// /// 窗体加载事件 /// /// /// protected override void EnterPasswordSuperSmallForm_Load(object sender, EventArgs e) { this.Text = this.StrWindowText; this.txtPassWord.Text = ""; this.IsSaveed = false; this.txtPassWord.Focus(); } /// /// 确定 /// /// /// protected override void btnOK_Click(object sender, EventArgs e) { if (this.txtPassWord.Text.Trim() != "") { this.Pwd = LYFZ.Command.Command_MD5.md5(this.txtPassWord.Text.Trim()); this.IsSaveed = true; this.Close(); } else { MessageBoxCustom.Show("请输入密码"); } } /// /// 取消 /// /// /// protected override void btnCancel_Click(object sender, EventArgs e) { this.Close(); } /// /// 回车 /// /// /// protected override void txtPassWord_KeyDown(object sender, KeyEventArgs e) { if (e.KeyCode == Keys.Enter) { this.btnOK_Click(this, null); } } } }