35 references to DropDownList
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.Designer.cs (1)
177
this.comboBoxTemplates.DropDownStyle = System.Windows.Forms.ComboBoxStyle.
DropDownList
;
System.Windows.Forms (29)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxAccessibleObject.cs (1)
228
ComboBoxStyle.
DropDownList
=> owner.ChildTextAccessibleObject,
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildDropDownButtonUiaProvider.cs (1)
63
_owner.DropDownStyle == ComboBoxStyle.
DropDownList
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildListUiaProvider.cs (1)
86
return _owningComboBox.DropDownStyle == ComboBoxStyle.
DropDownList
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (21)
152
if (DropDownStyle == ComboBoxStyle.
DropDownList
196
if (DropDownStyle == ComboBoxStyle.
DropDownList
375
case ComboBoxStyle.
DropDownList
:
1025
get => DropDownStyle == ComboBoxStyle.
DropDownList
? string.Empty : Text.Substring(SelectionStart, SelectionLength);
1028
if (DropDownStyle != ComboBoxStyle.
DropDownList
)
1131
if (value == ComboBoxStyle.
DropDownList
1183
if (DropDownStyle == ComboBoxStyle.
DropDownList
&& !IsHandleCreated && !string.IsNullOrEmpty(value) && FindStringExact(value) == -1)
1283
return ((_autoCompleteMode != AutoCompleteMode.None) && (DropDownStyle != ComboBoxStyle.
DropDownList
));
1998
or ComboBoxStyle.
DropDownList
)
2240
if (DropDownStyle != ComboBoxStyle.
DropDownList
)
2302
if (DropDownStyle == ComboBoxStyle.
DropDownList
&& SelectedIndex == index)
2352
if (ok && DropDownStyle != ComboBoxStyle.
DropDownList
)
2686
&& (DropDownStyle == ComboBoxStyle.
DropDownList
|| DropDownStyle == ComboBoxStyle.DropDown))
2839
&& DropDownStyle == ComboBoxStyle.
DropDownList
)
2987
if (DropDownStyle == ComboBoxStyle.
DropDownList
)
3037
if (DropDownStyle != ComboBoxStyle.
DropDownList
3063
&& DropDownStyle == ComboBoxStyle.
DropDownList
3260
if (DropDownStyle == ComboBoxStyle.
DropDownList
)
3263
Debug.Assert(DropDownStyle == ComboBoxStyle.
DropDownList
);
3799
&& DropDownStyle == ComboBoxStyle.
DropDownList
4016
&& DropDownStyle == ComboBoxStyle.
DropDownList
System\Windows\Forms\Controls\ComboBox\ComboBox.Modern.cs (2)
66
Rectangle editBounds = DropDownStyle == ComboBoxStyle.
DropDownList
584
return DropDownStyle == ComboBoxStyle.
DropDownList
System\Windows\Forms\Controls\ComboBox\ComboBox.ModernComboAdapter.cs (2)
81
if (_dropDownStyle != ComboBoxStyle.
DropDownList
270
if (_dropDownStyle != ComboBoxStyle.
DropDownList
System\Windows\Forms\Controls\DataGridView\DataGridViewComboBoxCell.cs (1)
1271
comboBox.DropDownStyle = ComboBoxStyle.
DropDownList
;
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ComboBoxDesigner.cs (1)
112
if (style is ComboBoxStyle.DropDown or ComboBoxStyle.
DropDownList
)
System\Windows\Forms\Design\DataGridViewAddColumnDialog.cs (1)
433
_columnTypesCombo.DropDownStyle = ComboBoxStyle.
DropDownList
;
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (1)
194
_keyComboBox.DropDownStyle = ComboBoxStyle.
DropDownList
;
System\Windows\Forms\Design\StyleEditorForm.cs (1)
294
_columnsOrRowsComboBox.DropDownStyle = ComboBoxStyle.
DropDownList
;
System\Windows\Forms\Design\ToolStripCollectionEditor.ToolStripItemEditorForm.cs (1)
249
_newItemTypes.DropDownStyle = ComboBoxStyle.
DropDownList
;