Here are the examples of the csharp api class System.Windows.Forms.ComboBox.OnSelectionChangeCommitted(System.EventArgs) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
4 Examples
0
1. Example
View licenseprotected override void OnSelectionChangeCommitted(EventArgs e) { dropDownShowing = false; base.OnSelectionChangeCommitted(e); }
0
2. Example
View licenseprotected override void OnSelectionChangeCommitted(EventArgs e) { base.OnSelectionChangeCommitted(e); if ((SelectedItem == null) || (m_editor == null) || (m_editor.SelectedView == null)) return; var item = SelectedItem as Item; if (item == null) return; m_editor.SelectedView.Selection.StartOffset = item.Node.StartOffset; m_editor.Focus(); }
0
3. Example
View licenseprotected override void OnSelectionChangeCommitted(EventArgs e) { if (SelectedItem is TagOptionsProvider) { OnManageProviders(); if (_selectedIndex > -1 && _selectedIndex < Items.Count) SelectedIndex = _selectedIndex; } base.OnSelectionChangeCommitted(e); }
0
4. Example
View licenseprotected override void OnSelectionChangeCommitted(EventArgs e) { // there are 2 ways that the value can change // either the selection change is comitted, or the control loses focus OnValueChanged(EventArgs.Empty); base.OnSelectionChangeCommitted(e); }