private void btnXoa_Click(object sender, EventArgs e) { if (this.dataGridView1.SelectedRows.Count <= 0) { MessageBox.Show("Hãy chọn dòng cần xóa!"); return; } GiaoVien giaoVien = GiaoVienController.getGV(this.dataGridView1.SelectedRows[0].Cells[0].Value.ToString()); GiaoVienController.DeleteGV(giaoVien); //Hiển thị BindingSource source = new BindingSource(); source.DataSource = GiaoVienController.GetGV(); this.dataGridView1.DataSource = source; }