This commit is contained in:
Камилия Сафиулова 2023-12-20 09:17:34 +04:00
parent 6b440d6ada
commit 9953e40a20

View File

@ -80,6 +80,7 @@ namespace Catamaran
_logger.LogInformation($"Добавлен набор:{ textBoxStorageName.Text}");
}
private void AddCatamaran(DrawningCatamaran drawningCatamaran)
{
{
if (listBoxStorages.SelectedIndex == -1)
{
@ -88,29 +89,31 @@ namespace Catamaran
var obj = _storage[listBoxStorages.SelectedItem.ToString() ?? string.Empty];
if (obj == null)
{
_logger.LogWarning("Добавление пустого объекта");
return;
}
try
{
if (obj + drawningCatamaran)
{
MessageBox.Show("Объект добавлен");
pictureBoxCollection.Image = obj.ShowCatamarans();
_logger.LogInformation($"Объект {obj.GetType()} добавлен");
}
else
}
catch (StorageOverflowException ex)
{
MessageBox.Show("Не удалось добавить объект");
_logger.LogInformation($"Не удалось добавить объект");
MessageBox.Show(ex.Message);
_logger.LogWarning($"{ex.Message} в наборе {listBoxStorages.SelectedItem.ToString()}");
}
}
}
/// <summary>
/// Выбор набора
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void ListBoxObjects_SelectedIndexChanged(object sender,
EventArgs e)
private void ListBoxObjects_SelectedIndexChanged(object sender, EventArgs e)
{
pictureBoxCollection.Image =
_storage[listBoxStorages.SelectedItem?.ToString() ?? string.Empty]?.ShowCatamarans();