Доработка лабортаторной №4
This commit is contained in:
parent
aefbcc7217
commit
cc6a673f86
@ -219,7 +219,23 @@ public partial class FormTruckCollection : Form
|
||||
/// <param name="e"></param>
|
||||
private void buttonCollectionDel_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (listBoxCollection.SelectedIndex < 0 || listBoxCollection.SelectedItem == null)
|
||||
{
|
||||
MessageBox.Show("Коллекция не выбрана", "Ошибка",
|
||||
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
string selectedCollection = listBoxCollection.SelectedItem.ToString();
|
||||
|
||||
if (MessageBox.Show($"Удалить коллекцию {selectedCollection}?", "Удаление коллекции",
|
||||
MessageBoxButtons.YesNo, MessageBoxIcon.Question) != DialogResult.Yes)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
_storageCollection.DelCollection(selectedCollection);
|
||||
RerfreshListBoxItems();
|
||||
}
|
||||
/// <summary>
|
||||
/// Обновление списка в listBoxCollection
|
||||
|
Loading…
Reference in New Issue
Block a user