Exemplo n.º 1
0
 private void btOption_Click(object sender, EventArgs e)
 {
     using (OptionsView optionsView = new OptionsView())
     {
         if (optionsView.ShowDialog() == DialogResult.OK)
         {
             //lblPieceScanType.sefff
         }
         optionsView.Close();
     }
 }
Exemplo n.º 2
0
        public static DialogResult ShowDialog(string dialogName, object Arg)
        {
            DialogResult dialogResult = DialogResult.Cancel;

            switch (dialogName)
            {
            //case "SetupPlugin":
            //  using (PluginsSetup pluginSetup = new PluginsSetup())
            //  {
            //    dialogResult = pluginSetup.ShowDialog();
            //    pluginSetup.Close();
            //  }
            //  break;
            case "NewOrder":
                using (OrderViewer orderView = new OrderViewer())
                {
                    orderView.Text = "Сканер";
                    dialogResult   = orderView.ShowDialog();
                    orderView.Close();
                }
                break;

            case "SetupDatasource":
                using (ConfigurePlugin confPlugin = new ConfigurePlugin())
                {
                    dialogResult = confPlugin.ShowDialog();
                    confPlugin.Close();
                }
                break;

            case "Options":
                using (OptionsView optionsView = new OptionsView())
                {
                    optionsView.ShowDialog();
                    optionsView.Close();
                }
                break;
            }
            return(dialogResult);
        }