namespace HStation.WinFrmUI.Auth.Core._02_User
|
{
|
public partial class UpdateUserDlg : DevExpress.XtraEditors.XtraForm
|
{
|
public UpdateUserDlg()
|
{
|
InitializeComponent();
|
}
|
|
private void checkEditXiuGaiPass_CheckedChanged(object sender, EventArgs e)
|
{
|
if (checkEditXiuGaiPass.Checked)
|
{
|
textEditNewPass.Enabled = true;
|
textEditQueRenPass.Enabled = true;
|
}
|
else
|
{
|
textEditNewPass.Enabled = false;
|
textEditQueRenPass.Enabled = false;
|
}
|
}
|
|
private void simpleButton1_Click(object sender, EventArgs e)
|
{
|
if (e == null)
|
{
|
return;
|
}
|
this.Close();
|
}
|
|
private void simpleButton2_Click(object sender, EventArgs e)
|
{
|
if (e == null)
|
{
|
return;
|
}
|
this.Close();
|
}
|
}
|
}
|