SIPSorcery.UIHelper.SetComboBoxSelectedId C# (CSharp) Method

SetComboBoxSelectedId() public static method

public static SetComboBoxSelectedId ( ComboBox comboBox, int index ) : void
comboBox System.Windows.Controls.ComboBox
index int
return void
        public static void SetComboBoxSelectedId(ComboBox comboBox, int index)
        {
            if (comboBox.Dispatcher.CheckAccess()) {
                comboBox.SelectedIndex = index;
            }
            else {
                comboBox.Dispatcher.BeginInvoke(new SetComboBoxSelectedIndexDelegate(SetComboBoxSelectedId), comboBox, index);
            }
        }