private void bandedGridView1_DoubleClick(object sender, EventArgs e) { if (string.IsNullOrEmpty(_Id)) { XtraMessageBox.Show("Vui lòng chọn một người cần sửa!", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Error); } else { var update = new FormEditResultInterview(_Id); update.ShowDialog(); EnableButtonEditAndDelete(false); } }
private void btnUpdate_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e) { splashScreenManager1.ShowWaitForm(); if (string.IsNullOrEmpty(_Id)) { splashScreenManager1.CloseWaitForm(); XtraMessageBox.Show("Vui lòng chọn một người cần sửa!", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Error); } else { var update = new FormEditResultInterview(_Id); update.ShowDialog(); EnableButtonEditAndDelete(false); splashScreenManager1.CloseWaitForm(); } }
private void bandedGridView1_DoubleClick(object sender, EventArgs e) { if (string.IsNullOrEmpty(_Id)) { XtraMessageBox.Show("Vui lòng chọn một người cần sửa!", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Error); } else { var update = new FormEditResultInterview(_Id); update.ShowDialog(); LoadData(); EnableButtonEditAndDelete(false); } }