Ejemplo n.º 1
0
 public GPIBType()
 {
     InitializeComponent();
     GPIBPortComboBox.ItemsSource = NIInstrument.FindAddresses(PortType.GPIB);
 }
Ejemplo n.º 2
0
 private void Refresh_Click(object sender, RoutedEventArgs e)
 {
     GPIBPortComboBox.ItemsSource = NIInstrument.FindAddresses(PortType.GPIB);
     SystemSettings.SnackbarMessageQueue.Enqueue("Refresh Complete.");
 }
Ejemplo n.º 3
0
 public USBType()
 {
     InitializeComponent();
     UsbPortComboBox.ItemsSource = NIInstrument.FindAddresses(PortType.USB);
 }