private void on_cmdConfigureDeviceClick(object sender, System.Windows.RoutedEventArgs e)
 {
     switch (this.comboBoxSelectSourceDevice.Text)
     {
         case "KEITHLEY 2602A":
             {
                 _SelectedSource = AvaliableSources.KEITHLEY_2602A;
                 _Keithley2602A_DeviceSettings = new Keithley2602A_Channel_Settings();
                 _Keithley2602A_DeviceSettings.Show();
                 this.Close();
             }break;
         default:
             break;
     }
 }
Ejemplo n.º 2
0
        private void on_cmdConfigureDeviceClick(object sender, System.Windows.RoutedEventArgs e)
        {
            switch (this.comboBoxSelectMeasureDevice.Text)
            {
            case "KEITHLEY 2602A":
            {
                _SelectedSource = AvaliableSources.KEITHLEY_2602A;
                _Keithley2602A_DeviceSettings = new Keithley2602A_Channel_Settings();
                _Keithley2602A_DeviceSettings.Show();
                this.Close();
            } break;

            default:
                break;
            }
        }