24 references to MouseDown
System.Windows.Forms (20)
System\Windows\Forms\Control.cs (1)
7859/// Raises the <see cref="MouseDown"/> event.
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (4)
28822_editingPanel.MouseDown -= EditingControls_MouseDown; 28833EditingControl.MouseDown -= EditingControls_MouseDown; 29920_editingPanel.MouseDown += EditingControls_MouseDown; 29931EditingControl.MouseDown += EditingControls_MouseDown;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (2)
356add => base.MouseDown += value; 357remove => base.MouseDown -= value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (5)
172_gridView.MouseDown += OnChildMouseDown; 219_helpPane.MouseDown += OnChildMouseDown; 228_commandsPane.MouseDown += OnChildMouseDown; 1356add => base.MouseDown += value; 1357remove => base.MouseDown -= value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (1)
314_editTextBox.MouseDown += OnEditMouseDown;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
729control.MouseDown += HandleMouseDown; 774control.MouseDown -= HandleMouseDown;
System\Windows\Forms\Controls\ToolStrips\ToolStripItemClickedEventHandler.cs (1)
7/// Represents a method that will handle the <see cref="Control.MouseDown"/>,
System\Windows\Forms\Input\MouseEventArgs.cs (1)
7/// Provides data for the <see cref="Control.MouseUp"/>, <see cref="Control.MouseDown"/> and
System\Windows\Forms\Input\MouseEventHandler.cs (1)
7/// Represents a method that will handle the <see cref="Control.MouseDown"/>,
System\Windows\Forms\Scrolling\ScrollBar.cs (2)
425add => base.MouseDown += value; 426remove => base.MouseDown -= value;
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\SplitContainerDesigner.cs (2)
180_splitContainer.MouseDown -= OnSplitContainer; 245_splitContainer.MouseDown += OnSplitContainer;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1304add { base.MouseDown += value; } 1305remove { base.MouseDown -= value; }