32 references to Modal
System.Windows.Forms (7)
System\Windows\Forms\ActiveX\AxHost.AxPropertyTypeEditor.cs (1)
51return UITypeEditorEditStyle.Modal;
System\Windows\Forms\ComponentModel\COM2Interop\Com2AboutBoxPropertyDescriptor.AboutBoxUITypeEditor.cs (1)
40public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyBuilderUITypeEditor.cs (1)
77public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyPageUITypeConverter.cs (1)
62public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
430case UITypeEditorEditStyle.Modal:
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.Flags.cs (1)
27/// The current <see cref="UITypeEditor.GetEditStyle()"/> is <see cref="UITypeEditorEditStyle.Modal"/>.
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyDescriptorGridEntry.ExceptionEditor.cs (1)
52=> UITypeEditorEditStyle.Modal;
System.Windows.Forms.Design (12)
System\ComponentModel\Design\BinaryEditor.cs (1)
124public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\ComponentModel\Design\CollectionEditor.cs (1)
293public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
234_button.Ellipsis = (_editor.GetEditStyle(TypeDescriptorContext) == UITypeEditorEditStyle.Modal);
System\Drawing\Design\FontEditor.cs (1)
57public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Drawing\Design\IconEditor.cs (1)
98=> UITypeEditorEditStyle.Modal;
System\Drawing\Design\ImageEditor.cs (1)
122public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\Design\DataGridViewCellStyleEditor.cs (1)
49public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\Design\FileNameEditor.cs (1)
44public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\Design\FolderNameEditor.cs (1)
34public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext? context) => UITypeEditorEditStyle.Modal;
System\Windows\Forms\Design\FormatStringEditor.cs (1)
88=> UITypeEditorEditStyle.Modal;
System\Windows\Forms\Design\LinkAreaEditor.cs (1)
66=> UITypeEditorEditStyle.Modal;
System\Windows\Forms\Design\MaskPropertyEditor.cs (1)
82=> UITypeEditorEditStyle.Modal;
System.Windows.Forms.Design.Tests (11)
System\ComponentModel\Design\ArrayEditorTests.cs (1)
139Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\ComponentModel\Design\CollectionEditorTests.cs (1)
762Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Drawing\Design\BitmapEditorTests.cs (1)
32Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Drawing\Design\FontEditorTests.cs (1)
31Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Drawing\Design\ImageEditorTests.cs (1)
67Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Drawing\Design\MetafileEditorTests.cs (1)
25Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Windows\Forms\Design\DataGridViewCellStyleEditorTests.cs (1)
21Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(null));
System\Windows\Forms\Design\FileNameEditorTests.cs (1)
32Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Windows\Forms\Design\FolderNameEditorTests.cs (1)
24Assert.Equal(UITypeEditorEditStyle.Modal, editor.GetEditStyle(context));
System\Windows\Forms\Design\FormatStringEditorTests.cs (1)
48_editor.GetEditStyle(context).Should().Be(UITypeEditorEditStyle.Modal);
System\Windows\Forms\Design\MaskPropertyEditorTests.cs (1)
52result.Should().Be(UITypeEditorEditStyle.Modal);
System.Windows.Forms.Tests (2)
System\Drawing\Design\UITypeEditorTests.cs (2)
71.Returns(UITypeEditorEditStyle.Modal) 73Assert.Equal(UITypeEditorEditStyle.Modal, mockEditor.Object.GetEditStyle());