Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. private void deleteBtn_Click(object sender, EventArgs e)
  2. {
  3. if (dataGridCars.SelectedRows.Count == 0)
  4. {
  5. MessageBox.Show("Выберите строку!", "Ошибка", MessageBoxButtons.OK);
  6. return;
  7. }
  8. DialogResult dialogResult = MessageBox.Show($"Вы уверены что хотите удалить выбранный автомобиль?", "Удаление", MessageBoxButtons.YesNo);
  9. if (dialogResult == DialogResult.Yes)
  10. {
  11. database.Remove(database[_rowIndex]);
  12. renderGrid();
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement