private void btnThem_Click(object sender, EventArgs e) { DetailForm f = new DetailForm(0); f.actionAfterOk += new DetailForm.Mydel(Show); if (f.ShowDialog() == DialogResult.OK) { MessageBox.Show("Thêm thành công"); } else { MessageBox.Show("Thêm thất bại"); } }
private void btnSua_Click(object sender, EventArgs e) { MonView mv = dgvDanhSachMon.CurrentRow.DataBoundItem as MonView; int idMon = mv.IdMon; DetailForm f2 = new DetailForm(idMon); f2.actionAfterOk += new DetailForm.Mydel(Show); if (f2.ShowDialog() == DialogResult.OK) { MessageBox.Show("Sửa thành công"); } else { MessageBox.Show("Sửa thất bại"); } }