Правки1
This commit is contained in:
parent
8253015db1
commit
c2a8a8318e
@ -24,7 +24,7 @@ namespace Monorail
|
||||
|
||||
private readonly ILogger _logger;
|
||||
|
||||
readonly int countPlace = 21;
|
||||
readonly int countPlace = 35;
|
||||
public FormMonorailCollection(ILogger<FormMonorailCollection> logger)
|
||||
{
|
||||
InitializeComponent();
|
||||
@ -153,20 +153,26 @@ EventArgs e)
|
||||
{
|
||||
return;
|
||||
}
|
||||
int pos = Convert.ToInt32(maskedTextBoxNumber.Text);
|
||||
int pos = 0;
|
||||
try
|
||||
{
|
||||
pos = Convert.ToInt32(maskedTextBoxNumber.Text);
|
||||
}
|
||||
catch (Exception) {
|
||||
MessageBox.Show("Введите позицию монорельса", "Ошибка",
|
||||
MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
if (obj - pos != null)
|
||||
{
|
||||
MessageBox.Show("Объект удален");
|
||||
pictureBoxCollection.Image = obj.ShowMonorails();
|
||||
_logger.LogInformation("Объект удален");
|
||||
}
|
||||
}
|
||||
catch (MonorailNotFoundException ex)
|
||||
else
|
||||
{
|
||||
MessageBox.Show(ex.Message);
|
||||
_logger.LogWarning($"Не удалось удалить объект. Исключение: {ex}");
|
||||
_logger.LogWarning($"Не удалось удалить объект по позиции {pos}");
|
||||
throw new MonorailNotFoundException(pos);
|
||||
}
|
||||
}
|
||||
private void ButtonRefreshCollection_Click(object sender, EventArgs e)
|
||||
|
Loading…
Reference in New Issue
Block a user