ContentElement.LostMouseCapture Event

Definition

Occurs when this element loses mouse capture.

public:
 virtual event System::Windows::Input::MouseEventHandler ^ LostMouseCapture;
public event System.Windows.Input.MouseEventHandler LostMouseCapture;
member this.LostMouseCapture : System.Windows.Input.MouseEventHandler 
Public Custom Event LostMouseCapture As MouseEventHandler 

Event Type

Implements

Remarks

When an element captures the mouse, it receives mouse input even if the pointer is outside its bounds. The mouse is typically captured only during drag-and-drop operations.

Because this event uses bubbling routing, the element that loses capture might be a child element instead of the element where the event handler is actually attached. Check the Source in the event data to determine the actual element that lost capture.

This event creates an alias for the Mouse.LostMouseCapture attached event for this class, so that LostMouseCapture is part of the class members list when ContentElement is inherited as a base element. Event handlers that are attached to the LostMouseCapture event are attached to the underlying Mouse.LostMouseCapture attached event and receive the same event data instance.

Routed Event Information

Identifier field LostMouseCaptureEvent
Routing strategy Bubbling
Delegate MouseEventHandler
  • There is no defined corresponding tunneling event.

  • Override OnLostMouseCapture to implement class handling for this event in derived classes.

Applies to