Stylus.StylusLeave Attached Event
![]() |
---|
The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience. |
Occurs when the stylus cursor leaves the bounds of an element.
Assembly: PresentationCore (in PresentationCore.dll)
This is an attached event. WPF implements attached events as routed events. An attached event is, fundamentally, a XAML language concept used to reference events that are handled on objects that do not, themselves, define events. WPF further expands an attached event's capabilities, allowing it to traverse a route. Attached events do not have a direct handling syntax in code; to attach handlers for a routed event in code, use a designated Add*Handler method. For details, see Attached Events Overview.
Identifier field | |
Routing strategy | Direct |
Delegate |
The following example demonstrates how to change the color of a Button when the stylus cursor enters and leaves its bounds. This example assumes that there is a Button called button1 and that the StylusEnter and StylusLeave events are connected to event handlers.