Exemplo n.º 1
0
        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);
            }
        }
Exemplo n.º 2
0
        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);
            }
        }