UIElement.StylusMove Evento
Definición
Se produce cuando el lápiz se mueve sobre este elemento.Occurs when the stylus moves over this element. El lápiz debe moverse mientras se encuentra sobre el digitalizador para que se genere este evento.The stylus must move while on the digitizer to raise this event. De lo contrario, se genera StylusInAirMove.Otherwise, StylusInAirMove is raised instead.
public:
virtual event System::Windows::Input::StylusEventHandler ^ StylusMove;
public event System.Windows.Input.StylusEventHandler StylusMove;
member this.StylusMove : System.Windows.Input.StylusEventHandler
Public Custom Event StylusMove As StylusEventHandler
Tipo de evento
Implementaciones
Comentarios
Este evento crea un alias para el Stylus.StylusMove evento adjunto para esta clase, por lo que forma StylusMove parte de la lista de miembros de clase cuando UIElement se hereda como un elemento base.This event creates an alias for the Stylus.StylusMove attached event for this class, so that StylusMove is part of the class members list when UIElement is inherited as a base element. Los controladores de eventos adjuntos al StylusMove evento se adjuntan al Stylus.StylusMove evento adjunto subyacente y reciben la misma instancia de datos de evento.Event handlers that are attached to the StylusMove event are attached to the underlying Stylus.StylusMove attached event and receive the same event data instance.
La entrada táctil, del mouse y del lápiz se encuentra en una relación determinada.Touch, mouse, and stylus input exist in a particular relationship. Para obtener más información, vea Introducción a la entrada.For more information, see Input Overview.
Información sobre eventos enrutadosRouted Event Information
Campo de identificadorIdentifier field | StylusMoveEvent |
Estrategia de enrutamientoRouting strategy | PropagaciónBubbling |
DelegadoDelegate | StylusEventHandler |
El evento de tunelización correspondiente es PreviewStylusMove .The corresponding tunneling event is PreviewStylusMove.
Invalide OnStylusMove para implementar el control de clases para este evento en las clases derivadas.Override OnStylusMove to implement class handling for this event in derived classes.