示例#1
0
        private void tsmiPersonalInformation_Click(object sender, EventArgs e)
        {
            FrmPersonalInformation frmPersonalInformation = new FrmPersonalInformation(staff);

            this.Enabled = false;
            frmPersonalInformation.Show();
            frmPersonalInformation.FormClosed += frmPersonalInformation_FormClosed;
        }
示例#2
0
 private void tsmiPersonalInformation_Click(object sender, EventArgs e)
 {
     FrmPersonalInformation frmPersonalInformation = new FrmPersonalInformation(staff);
     this.Enabled = false;
     frmPersonalInformation.Show();
     frmPersonalInformation.FormClosed += frmPersonalInformation_FormClosed;
 }