Invoked when an unhandled System.Windows.UIElement.MouseLeftButtonUp routed event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
Syntax
'Declaration
Protected Overrides Sub OnMouseLeftButtonUp( _
ByVal As System.Windows.Input.MouseButtonEventArgs _
)
'Usage
Dim instance As DropDownItemControl
Dim e As System.Windows.Input.MouseButtonEventArgs
instance.OnMouseLeftButtonUp(e)
protected override void OnMouseLeftButtonUp(
System.Windows.Input.MouseButtonEventArgs
)
Parameters
- e
- The System.Windows.Input.MouseButtonEventArgs that contains the event data. The event data reports that the left mouse button was released.
See Also