Готовая лабораторная работа 7

This commit is contained in:
nikbel2004@outlook.com 2023-12-09 03:20:31 +04:00
parent 065bd53fcf
commit 07984a1940

View File

@ -77,13 +77,13 @@ namespace Tank
_logger.LogWarning("Удаление невыбранного набора");
return;
}
string name = CollectionListBox.SelectedItem.ToString() ?? string.Empty;
if (MessageBox.Show($"Удалить объект {name}?", "Удаление", MessageBoxButtons.YesNo,
string nameSet = CollectionListBox.SelectedItem.ToString() ?? string.Empty;
if (MessageBox.Show($"Удалить объект {nameSet}?", "Удаление", MessageBoxButtons.YesNo,
MessageBoxIcon.Question) == DialogResult.Yes)
{
_storage.DelSet(name);
_storage.DelSet(nameSet);
ReloadObjects();
_logger.LogInformation($"Набор '{name}' удален");
_logger.LogInformation($"Набор '{nameSet}' удален");
}
_logger.LogWarning("Отмена удаления набора");
}