private void toolStripButton_xoaNhom_Click(object sender, EventArgs e) { Nhom nhom = Nhom.ParseNhom(bindingSource_nhom.Current as DataRowView); if (MessageBox.Show("Bạn có muốn xóa nhóm \"" + nhom.TenNhom + "\" không?", "Xóa nhóm", MessageBoxButtons.YesNo) == DialogResult.Yes) { bindingSource_nhom.RemoveCurrent(); Nhom.xoaNhomDatabase(nhom.MaNhom); } }