UIElement.OnStylusEnter(StylusEventArgs) Method

Definition

Invoked when an unhandled StylusEnter attached event is raised by this element. Implement this method to add class handling for this event.

protected:
 virtual void OnStylusEnter(System::Windows::Input::StylusEventArgs ^ e);
protected virtual void OnStylusEnter (System.Windows.Input.StylusEventArgs e);
abstract member OnStylusEnter : System.Windows.Input.StylusEventArgs -> unit
override this.OnStylusEnter : System.Windows.Input.StylusEventArgs -> unit
Protected Overridable Sub OnStylusEnter (e As StylusEventArgs)

Parameters

e
StylusEventArgs

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.

Applies to

See also