UIElement3D.StylusEnter 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 the stylus enters the bounds of this element.
public:
virtual event System::Windows::Input::StylusEventHandler ^ StylusEnter;
public event System.Windows.Input.StylusEventHandler StylusEnter;
member this.StylusEnter : System.Windows.Input.StylusEventHandler
Public Custom Event StylusEnter As StylusEventHandler
Event Type
Implements
Remarks
StylusEnter is a Routed Events Overview that uses the direct event handling routing strategy. Direct routed events are not raised along a route; instead, they are handled in the same element where they are raised. However, they do enable other aspects of routed event behavior, such as event triggers in styles.
Although StylusEnter tracks when the stylus enters the bounds of an element, this event more literally reports that the IsStylusOver property value has changed from false
to true
on this element.
This event creates an alias for the Stylus.StylusEnter attached event for this class, so that StylusEnter is part of the class members list when UIElement3D is inherited as a base element. Event handlers that are attached to the StylusEnter event are attached to the underlying Stylus.StylusEnter attached event and receive the same event data instance.
Touch, mouse, and stylus input exist in a particular relationship. For more information, see Touch Input Support in Windows Vista and Input Overview.
Routed Event Information
Identifier field | StylusEnterEvent |
Routing strategy | Direct |
Delegate | StylusEventHandler |
- Override OnStylusEnter to implement class handling for this event in derived classes.