private void ShowInputs(object sender, EventArgs e) { try { if (!CheckIsOpened()) { return; } var form = new InputsForm(PRG.Inputs, PRG.CustomUnits); form.Show(); } catch (Exception exception) { MessageBoxUtilities.ShowException(exception); } }
private void ShowInputs(object sender, EventArgs e) { try { if (!CheckIsOpened()) { return; } var form = new InputsForm(PRG.Inputs, PRG.CustomUnits); form.Show(); } catch (Exception ex) { ExceptionHandler.Show(ex); } }