From 2015e638fe64a0b258138a2e788b9f21828ce410 Mon Sep 17 00:00:00 2001 From: sqdselo <147947144+sqdselo@users.noreply.github.com> Date: Sat, 4 May 2024 15:57:24 +0400 Subject: [PATCH] 1 --- .../HoistingCrane/FormCarCollection.cs | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/HoistingCrane/HoistingCrane/FormCarCollection.cs b/HoistingCrane/HoistingCrane/FormCarCollection.cs index cc3db0d..8fb3fa7 100644 --- a/HoistingCrane/HoistingCrane/FormCarCollection.cs +++ b/HoistingCrane/HoistingCrane/FormCarCollection.cs @@ -99,24 +99,24 @@ namespace HoistingCrane private void buttonDeleteCar_Click(object sender, EventArgs e) { - if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return; - if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) return; - try - { - int pos = Convert.ToInt32(maskedTextBox.Text); - if ((_company - pos) != null) - { - MessageBox.Show("Объект удален!"); - pictureBox.Image = _company.Show(); - logger.LogInformation("Удален объект по позиции: {pos} ", pos); - } - else throw new Exception(); - } - catch(Exception ex) - { - logger.LogInformation("Не удалось удалить объект по позиции: {pos}", Convert.ToInt32(maskedTextBox.Text)); - return; - } + //if (MessageBox.Show("Удалить объект?", "Удаление", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.No) return; + //if (string.IsNullOrEmpty(maskedTextBox.Text) || _company == null) return; + //try + //{ + // int pos = Convert.ToInt32(maskedTextBox.Text); + // if ((_company - pos) != null) + // { + // MessageBox.Show("Объект удален!"); + // pictureBox.Image = _company.Show(); + // logger.LogInformation("Удален объект по позиции: {pos} ", pos); + // } + // else throw new Exception(); + //} + //catch(Exception ex) + //{ + // logger.LogInformation("Не удалось удалить объект по позиции: {pos}", Convert.ToInt32(maskedTextBox.Text)); + // return; + //} } private void buttonRefresh_Click(object sender, EventArgs e) { @@ -233,7 +233,7 @@ namespace HoistingCrane MessageBox.Show("Сохранение прошло успешно", "Результат", MessageBoxButtons.OK, MessageBoxIcon.Information); logger.LogInformation("Сохранение в файл: {filename}", saveFileDialog.FileName); } - catch (Exception ex) + catch (FileNotFoundException ex) { MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); logger.LogError("Ошибка: {Message}", ex.Message); @@ -257,7 +257,7 @@ namespace HoistingCrane RerfreshListBoxItems(); logger.LogInformation("Загрузка в файл: {filename}", saveFileDialog.FileName); } - catch(Exception ex) + catch(FileNotFoundException ex) { MessageBox.Show(ex.Message, "Результат", MessageBoxButtons.OK, MessageBoxIcon.Error); logger.LogError("Ошибка: {Message}", ex.Message);