Stylus.StylusButtonDown Attached Event
Occurs when the user presses one of the buttons on the stylus.
Namespace: System.Windows.Input
Assembly: PresentationCore (in PresentationCore.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
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.
The following example demonstrates how to show a shortcut menu when the user presses the barrel button on a stylus. This example assumes that there is a TextBox called textBox1, and a ContextMenu called textBoxContextMenu, and that the StylusButtonDown event is connected to the event handler.
// Show or hide a shortcut menu when the user clicks the barrel button. void textbox1_StylusButtonDown(object sender, StylusButtonEventArgs e) { if (e.StylusButton.Guid != StylusPointProperties.BarrelButton.Id) { return; } if (textbox1.ContextMenu == null) { textbox1.ContextMenu = textBoxContextMenu; } else { textbox1.ContextMenu = null; } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.