4 implementations of DropDownControl
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
1406public void DropDownControl(Control control)
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.cs (1)
409void IWindowsFormsEditorService.DropDownControl(Control control)
System\Windows\Forms\Design\CollectionEditVerbManager.cs (1)
160void IWindowsFormsEditorService.DropDownControl(Control control)
System\Windows\Forms\Design\EditorServiceContext.cs (1)
117void IWindowsFormsEditorService.DropDownControl(Control control)
29 references to DropDownControl
System.Windows.Forms.Design (13)
System\ComponentModel\Design\DateTimeEditor.cs (1)
24editorService.DropDownControl(dateTimeUI);
System\ComponentModel\Design\MultilineStringEditor.cs (1)
27editorService.DropDownControl(_editorUI);
System\ComponentModel\Design\ObjectSelectorEditor.cs (1)
46editorService.DropDownControl(_selector);
System\Drawing\Design\ColorEditor.cs (1)
29editorService.DropDownControl(_colorUI);
System\Drawing\Design\ContentAlignmentEditor.cs (1)
29editorService.DropDownControl(_contentUI);
System\Drawing\Design\CursorEditor.cs (1)
32editorService.DropDownControl(_cursorUI);
System\Windows\Forms\Design\AnchorEditor.cs (1)
27editorService.DropDownControl(_anchorUI);
System\Windows\Forms\Design\BorderSidesEditor.cs (1)
27editorService.DropDownControl(_borderSidesEditorUI);
System\Windows\Forms\Design\DataGridViewColumnTypeEditor.cs (1)
37windowsFormsEditorService.DropDownControl(_columnTypePicker);
System\Windows\Forms\Design\DesignBindingPicker.cs (1)
429_windowsFormsEditorService.DropDownControl(this);
System\Windows\Forms\Design\DockEditor.cs (1)
27editorService.DropDownControl(_dockUI);
System\Windows\Forms\Design\MaskedTextBoxTextEditor.cs (1)
27editorService.DropDownControl(dropDown);
System\Windows\Forms\Design\ShortcutKeysEditor.cs (1)
34editorService.DropDownControl(_shortcutKeysUI);
System.Windows.Forms.Design.Tests (16)
System\ComponentModel\Design\MultilineStringEditorTests.cs (2)
39.Setup(e => e.DropDownControl(It.IsAny<Control>())) 43mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\ComponentModel\Design\ObjectSelectorEditorTests.cs (2)
49.Setup(e => e.DropDownControl(It.IsAny<Control>())) 53mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\Drawing\Design\ColorEditorTests.cs (2)
41.Setup(e => e.DropDownControl(It.IsAny<Control>())) 45mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\Drawing\Design\CursorEditorTests.cs (2)
40.Setup(e => e.DropDownControl(It.IsAny<Control>())) 44mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\Windows\Forms\Design\AnchorEditorTests.cs (2)
42.Setup(e => e.DropDownControl(It.IsAny<Control>())) 46mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\Windows\Forms\Design\BorderSidesEditorTests.cs (2)
40.Setup(e => e.DropDownControl(It.IsAny<Control>())) 44mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\Windows\Forms\Design\DockEditorTests.cs (2)
40.Setup(e => e.DropDownControl(It.IsAny<Control>())) 44mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());
System\Windows\Forms\Design\ShortcutKeysEditorTests.cs (2)
40.Setup(e => e.DropDownControl(It.IsAny<Control>())) 44mockEditorService.Verify(e => e.DropDownControl(It.IsAny<Control>()), Times.Once());