ButtonBase.OnMouseLeftButtonUp Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Provides class handling for the MouseLeftButtonUp event that occurs when the user lifts their finger while it is over this control.
Assembly: System.Windows (in System.Windows.dll)
Parameters
- e
- Type: System.Windows.Input.MouseButtonEventArgs
The event data.
| Exception | Condition |
|---|---|
| ArgumentNullException | e is null. |
This method marks the MouseLeftButtonUp event as handled by setting the MouseButtonEventArgs.Handled property of the event data to true when the button is enabled and its ClickMode is not set to Hover. Since this method marks the MouseLeftButtonUp event as handled in some situations, you should use the Click event instead to detect a button tap.
Notes to InheritorsIf you override OnMouseLeftButtonUp, always call the base implementation in your OnMouseLeftButtonUp 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.