ButtonBase.OnMouseMove Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Provides class handling for the MouseMove routed event that occurs when the mouse pointer moves while over this element.
Namespace: System.Windows.Controls.Primitives
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- e
- Type: System.Windows.Input.MouseEventArgs
The event data.
This implementation marks the MouseMove event as handled by setting the Handled property of the event data to true when ClickMode is not set to Hover and IsPressed is true. To respond to the MouseMove event, attach an event handler to the PreviewMouseMove event, or call AddHandler(RoutedEvent, Delegate, Boolean) with handledEventsToo set to true.
Notes to InheritorsIf you override OnMouseMove, always call the base implementation in your OnMouseMove implementation. Failure to call the base implementation prevents base classes from handling the event with a class handler, which might change the run-time behavior of the final class. You can call the base implementation either before or after your special handling, depending on your requirements.
Windows 8 Consumer Preview, Windows Server 8 Beta, Windows 7, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.