Коммит для своих

This commit is contained in:
gg12 darfren 2023-11-28 12:32:20 +04:00
parent b7b8f43b95
commit b854383cbe
3 changed files with 10 additions and 1 deletions

View File

@ -15,6 +15,8 @@ namespace Monorail.DrawningObjects
public int GetPosX => _startPosX;
char separator = '|';
public int GetPosY => _startPosY;
public int GetWidth => _monoRailWidth;

View File

@ -1,6 +1,8 @@
using Monorail.Entities;
using Microsoft.VisualBasic.Logging;
using Monorail.Entities;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Linq;
using System.Text;

View File

@ -77,6 +77,7 @@ namespace Monorail
}
catch (StorageOverflowException ex)
{
Log.Warning($"Коллекция {listBoxStorages.SelectedItem.ToString() ?? string.Empty} переполнена");
MessageBox.Show(ex.Message);
}
});
@ -111,10 +112,12 @@ namespace Monorail
}
catch (MonorailNotFoundException ex)
{
Log.Warning($"Не получилось удалить объект из коллекции {listBoxStorages.SelectedItem.ToString() ?? string.Empty}");
MessageBox.Show(ex.Message);
}
catch(FormatException ex)
{
Log.Warning($"Было введено не число");
MessageBox.Show("Введите число");
}
}
@ -185,6 +188,7 @@ MessageBoxIcon.Question) == DialogResult.Yes)
}
catch (Exception ex)
{
Log.Warning("Не удалось сохранить");
MessageBox.Show($"Не сохранилось: {ex.Message}",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);
@ -210,6 +214,7 @@ MessageBoxIcon.Question) == DialogResult.Yes)
}
catch (Exception ex)
{
Log.Warning("Не удалось загрузить");
MessageBox.Show($"Не загрузилось: {ex.Message}",
"Результат", MessageBoxButtons.OK, MessageBoxIcon.Error);