ContentElement.MouseUp Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when any mouse button is released over this element.
public:
event System::Windows::Input::MouseButtonEventHandler ^ MouseUp;
public event System.Windows.Input.MouseButtonEventHandler MouseUp;
member this.MouseUp : System.Windows.Input.MouseButtonEventHandler
Public Custom Event MouseUp As MouseButtonEventHandler
Event Type
Remarks
This event creates an alias for the Mouse.MouseUp attached event for this class, so that MouseUp is part of the class members list when ContentElement is inherited as a base element. Event handlers that are attached to the MouseUp event are attached to the underlying Mouse.MouseUp attached event and receive the same event data instance.
The MouseUp event is often raised together with either MouseLeftButtonUp or MouseRightButtonUp, which correspond to a release of one of the two standard mouse buttons. MouseLeftButtonUp and MouseRightButtonUp are also routed events, but they are direct routed events, and the appropriate button-specific event is raised when the Mouse.MouseDown event reaches this element along the event route. See Remarks for MouseLeftButtonUp or MouseRightButtonUp.
Routed Event Information
Identifier field | MouseUpEvent |
Routing strategy | Bubbling |
Delegate | MouseButtonEventHandler |
The corresponding tunneling event is PreviewMouseUp.
Override OnMouseUp to implement class handling for this event in derived classes.