UIElement3D.PreviewMouseDown 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 pressed while the pointer is over this element.
public:
event System::Windows::Input::MouseButtonEventHandler ^ PreviewMouseDown;
public event System.Windows.Input.MouseButtonEventHandler PreviewMouseDown;
member this.PreviewMouseDown : System.Windows.Input.MouseButtonEventHandler
Public Custom Event PreviewMouseDown As MouseButtonEventHandler
Event Type
Remarks
This event creates an alias for the Mouse.PreviewMouseDown attached event for this class, so that PreviewMouseDown is part of the class members list when UIElement3D is inherited as a base element. Event handlers that are attached to the PreviewMouseDown event are attached to the underlying Mouse.PreviewMouseDown attached event and receive the same event data instance.
The PreviewMouseDown event is often raised together with either PreviewMouseLeftButtonDown or PreviewMouseRightButtonDown, which correspond to a press of one of the two standard mouse buttons. PreviewMouseLeftButtonDown and PreviewMouseRightButtonDown are also routed events, but they are direct routed events, and the appropriate button-specific event is raised when the Mouse.PreviewMouseDown event reaches this element along the event route. See Remarks for PreviewMouseLeftButtonDown or PreviewMouseRightButtonDown.
Routed Event Information
Identifier field | PreviewMouseDownEvent |
Routing strategy | Tunneling |
Delegate | MouseButtonEventHandler |
The corresponding bubbling event is MouseDown.
Override OnPreviewMouseDown to implement class handling for this event in derived classes.