private void btnGroupDelete_Click(object sender, EventArgs e) { var confirmResult = MessageBox.Show("Bạn có chắc chắn muốn xóa??", "Xác nhận xóa!!", MessageBoxButtons.YesNo); if (confirmResult == DialogResult.Yes) { int id = int.Parse(tbGroupID.Text); GroupBLL.RemoveGroup(id); Thread loadGroupsThread = new Thread(() => LoadGroups()); loadGroupsThread.Start(); MessageBox.Show("Xóa thành công"); } }