private void btnYes_Click(object sender, EventArgs e) { if (ckcBienMuc.Checked) { this.Result = ConfirmRestoreResult.POSTMASTER_BIENMUC; } else { this.Result = ConfirmRestoreResult.ONLY_POSTMASTER; } this.Close(); }
private void btnYes_Click(object sender, EventArgs e) { if (ckcPostMaster.Checked && ckcBienMuc.Checked) { this.Result = ConfirmRestoreResult.CHUONGTRINH_POASTMASTER_BIENMUC; } else if (ckcPostMaster.Checked && !ckcBienMuc.Checked) { this.Result = ConfirmRestoreResult.CHUONGTRINH_POSTMASTER; } else { this.Result = ConfirmRestoreResult.ONLY_CHUONGTRINH; } this.Close(); }