1 instantiation of ToolStripComboBoxControl
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (1)
45private static ToolStripComboBoxControl CreateControlInstance() => new()
13 references to ToolStripComboBoxControl
System.Windows.Forms (13)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.cs (3)
28ToolStripComboBoxControl combo = (ToolStripComboBoxControl)Control; 45private static ToolStripComboBoxControl CreateControlInstance() => new()
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.ToolStripComboBoxControl.ToolStripComboBoxControlAccessibleObject.cs (3)
14public ToolStripComboBoxControlAccessibleObject(ToolStripComboBoxControl toolStripComboBoxControl) 26if (this.TryGetOwnerAs(out ToolStripComboBoxControl? owner)) 38this.TryGetOwnerAs(out ToolStripComboBoxControl? owner)
System\Windows\Forms\Controls\ToolStrips\ToolStripComboBox.ToolStripComboBoxControl.ToolStripComboBoxFlatComboAdapter.cs (7)
21if (comboBox is not ToolStripComboBoxControl toolStripComboBox 24Debug.Assert(comboBox is ToolStripComboBoxControl, "Why are we here and not a toolstrip combo?"); 31private static ProfessionalColorTable GetColorTable(ToolStripComboBoxControl? toolStripComboBoxControl) 48return (comboBox.Enabled) ? SystemColors.Window : GetColorTable(comboBox as ToolStripComboBoxControl).ComboBoxBorder; 64? GetColorTable(comboBox as ToolStripComboBoxControl).ComboBoxBorder 82ToolStripComboBoxControl? toolStripComboBox = comboBox as ToolStripComboBoxControl;