10 references to GetEditStyle
System.Windows.Forms (6)
System\Drawing\Design\UITypeEditor.cs (2)
80/// Edits the specified value using the editor style provided by <see cref="GetEditStyle()"/>. 87/// Edits the specified value using the editor style provided by <see cref="GetEditStyle()"/>.
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (1)
2956dropDown = editor.GetEditStyle() == UITypeEditorEditStyle.DropDown;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.Flags.cs (2)
27/// The current <see cref="UITypeEditor.GetEditStyle()"/> is <see cref="UITypeEditorEditStyle.Modal"/>. 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.Tests (3)
System\Windows\Forms\Design\DataGridViewColumnCollectionEditorTests.cs (1)
14new DataGridViewColumnCollectionEditor().GetEditStyle().Should().Be(UITypeEditorEditStyle.Modal);
System\Windows\Forms\Design\DataGridViewColumnDataPropertyNameEditorTests.cs (1)
17new DataGridViewColumnDataPropertyNameEditor().GetEditStyle().Should().Be(UITypeEditorEditStyle.DropDown);
System\Windows\Forms\Design\DataMemberListEditorTests.cs (1)
17new DataMemberListEditor().GetEditStyle().Should().Be(UITypeEditorEditStyle.DropDown);
System.Windows.Forms.Tests (1)
System\Drawing\Design\UITypeEditorTests.cs (1)
75Assert.Equal(UITypeEditorEditStyle.Modal, mockEditor.Object.GetEditStyle());