Ejemplo n.º 1
0
        void ComboBoxDevice_SelectionChanged(object sender, SelectionChangedEventArgs e)
        {
            KeyValuePair <int, string> selectedDevice = (KeyValuePair <int, string>)ComboBoxDevice.SelectedItem;

            m_client.GetPhasorsAsync(selectedDevice.Key, true);
        }
Ejemplo n.º 2
0
 void GetPhasors()
 {
     m_client.GetPhasorsAsync(m_sourceDeviceID, true);
 }