UIElement3D.OnStylusLeave(StylusEventArgs) Method
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.
Invoked when an unhandled StylusLeave attached event is raised by this element. Implement this method to add class handling for this event.
protected public:
virtual void OnStylusLeave(System::Windows::Input::StylusEventArgs ^ e);
protected internal virtual void OnStylusLeave (System.Windows.Input.StylusEventArgs e);
abstract member OnStylusLeave : System.Windows.Input.StylusEventArgs -> unit
override this.OnStylusLeave : System.Windows.Input.StylusEventArgs -> unit
Protected Friend Overridable Sub OnStylusLeave (e As StylusEventArgs)
Parameters
The StylusEventArgs that contains the event data.
Remarks
This method has no default implementation. Because an intermediate class in the inheritance might implement this method, we recommend that you call the base implementation in your implementation. You may call base either before or after your special handling, depending on your requirements.
The purpose of this method is similar to common language runtime (CLR) event pattern On* methods: this method provides the means to handle the matching event from derived classes by establishing a class handler instead of an instance handler. In this case the matching event is a routed event. Marking the event as handled is still useful for preventing typical instance handlers (those that do not specify handledEventsToo
) from being invoked.