26 references to DropDown
System.Windows.Forms (4)
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
2956dropDown = editor.GetEditStyle() == UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
438case UITypeEditorEditStyle.DropDown:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.Flags.cs (1)
32/// The current <see cref="UITypeEditor.GetEditStyle()"/> is <see cref="UITypeEditorEditStyle.DropDown"/>.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (1)
196if (ute is not null && ute.GetEditStyle() == UITypeEditorEditStyle.DropDown)
System.Windows.Forms.Design (13)
System\ComponentModel\Design\DateTimeEditor.cs (1)
32public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\ComponentModel\Design\MultilineStringEditor.cs (1)
36public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\ComponentModel\Design\ObjectSelectorEditor.cs (1)
73public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Drawing\Design\ColorEditor.cs (1)
41public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Drawing\Design\ContentAlignmentEditor.cs (1)
38=> UITypeEditorEditStyle.DropDown;
System\Drawing\Design\CursorEditor.cs (1)
40public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\AnchorEditor.cs (1)
35public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\BorderSidesEditor.cs (1)
39public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\DataGridViewColumnTypeEditor.cs (1)
48public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\DataSourceListEditor.cs (1)
45return UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\DockEditor.cs (1)
34public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\MaskedTextBoxTextEditor.cs (1)
41return UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Design\ShortcutKeysEditor.cs (1)
46public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.DropDown;
System.Windows.Forms.Design.Tests (9)
System\ComponentModel\Design\MultilineStringEditorTests.cs (1)
64Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\ComponentModel\Design\ObjectSelectorEditorTests.cs (1)
74Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\Drawing\Design\ColorEditorTests.cs (1)
66Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\Drawing\Design\CursorEditorTests.cs (1)
65Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\Windows\Forms\Design\AnchorEditorTests.cs (1)
67Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\Windows\Forms\Design\BorderSidesEditorTests.cs (1)
65Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\Windows\Forms\Design\DockEditorTests.cs (1)
65Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));
System\Windows\Forms\Design\MaskedTextBoxTextEditorTests.cs (1)
180result.Should().Be(UITypeEditorEditStyle.DropDown);
System\Windows\Forms\Design\ShortcutKeysEditorTests.cs (1)
65Assert.Equal(UITypeEditorEditStyle.DropDown, editor.GetEditStyle(context));