23 references to MouseLeave
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.cs (1)
529button.MouseLeave += new EventHandler(OnIconButtonLeave);
System.Windows.Forms (17)
System\Windows\Forms\Control.cs (1)
8543/// Raises the <see cref="MouseLeave"/> event.
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (8)
28897_editingPanel.MouseLeave -= EditingControls_MouseLeave; 28908EditingControl.MouseLeave -= EditingControls_MouseLeave; 28918_horizScrollBar.MouseLeave -= ScrollBar_MouseLeave; 28924_vertScrollBar.MouseLeave -= ScrollBar_MouseLeave; 29995_editingPanel.MouseLeave += EditingControls_MouseLeave; 30006EditingControl.MouseLeave += EditingControls_MouseLeave; 30016_horizScrollBar.MouseLeave += ScrollBar_MouseLeave; 30022_vertScrollBar.MouseLeave += ScrollBar_MouseLeave;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (2)
414add => base.MouseLeave += value; 415remove => base.MouseLeave -= value;
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (2)
1437add => base.MouseLeave += value; 1438remove => base.MouseLeave -= value;
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (2)
732control.MouseLeave += HandleMouseLeave; 777control.MouseLeave -= HandleMouseLeave;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (2)
329add => base.MouseLeave += value; 330remove => base.MouseLeave -= value;
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\DesignBindingPicker.cs (1)
244_treeViewCtrl.MouseLeave += treeViewCtrl_MouseLeave;
System\Windows\Forms\Design\ToolStripTemplateNode.cs (2)
693_miniToolStrip.MouseLeave -= OnMouseLeave; 1462_miniToolStrip.MouseLeave += OnMouseLeave;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1334add { base.MouseLeave += value; } 1335remove { base.MouseLeave -= value; }