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