PIbd-21 Belianin N.N. LabWork07 #7

Closed
Belnik wants to merge 5 commits from LabWork07 into LabWork06
Showing only changes of commit 07984a1940 - Show all commits

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("Отмена удаления набора");
}