35 references to MouseLeave
PresentationUI (1)
MS\Internal\Documents\RMPublishingDialog.cs (1)
538button.MouseLeave += new EventHandler(OnIconButtonLeave);
System.Windows.Forms (15)
System\Windows\Forms\Control.cs (1)
7750/// Raises the <see cref="MouseLeave"/> event.
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (8)
28816_editingPanel.MouseLeave -= EditingControls_MouseLeave; 28827EditingControl.MouseLeave -= EditingControls_MouseLeave; 28837_horizScrollBar.MouseLeave -= ScrollBar_MouseLeave; 28843_vertScrollBar.MouseLeave -= ScrollBar_MouseLeave; 29917_editingPanel.MouseLeave += EditingControls_MouseLeave; 29928EditingControl.MouseLeave += EditingControls_MouseLeave; 29938_horizScrollBar.MouseLeave += ScrollBar_MouseLeave; 29944_vertScrollBar.MouseLeave += ScrollBar_MouseLeave;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (2)
392add => base.MouseLeave += value; 393remove => 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)
307add => base.MouseLeave += value; 308remove => 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)
729_miniToolStrip.MouseLeave -= OnMouseLeave; 1510_miniToolStrip.MouseLeave += OnMouseLeave;
System.Windows.Forms.Tests (12)
System\Windows\Forms\ButtonBaseTests.cs (4)
6446control.MouseLeave += handler; 6452control.MouseLeave -= handler; 6485control.MouseLeave += handler; 6494control.MouseLeave -= handler;
System\Windows\Forms\ButtonTests.cs (4)
2583control.MouseLeave += handler; 2589control.MouseLeave -= handler; 2621control.MouseLeave += handler; 2630control.MouseLeave -= handler;
System\Windows\Forms\ControlTests.Handlers.cs (2)
3534control.MouseLeave += handler; 3540control.MouseLeave -= handler;
System\Windows\Forms\TreeViewTests.cs (2)
6404control.MouseLeave += handler; 6409control.MouseLeave -= handler;
System.Windows.Forms.UI.IntegrationTests (2)
Infra\ScreenRecordService.cs (2)
572form.MouseLeave += OnThrottledInteraction; 586form.MouseLeave -= OnThrottledInteraction;
WindowsFormsIntegration (2)
System\Windows\Integration\ElementHost.cs (2)
1349add { base.MouseLeave += value; } 1350remove { base.MouseLeave -= value; }