UIElement.TouchMove Evento
Definición
Se produce cuando se mueve un dedo en la pantalla mientras se encuentra sobre este elemento.Occurs when a finger moves on the screen while the finger is over this element.
public:
event EventHandler<System::Windows::Input::TouchEventArgs ^> ^ TouchMove;
public event EventHandler<System.Windows.Input.TouchEventArgs> TouchMove;
member this.TouchMove : EventHandler<System.Windows.Input.TouchEventArgs>
Public Custom Event TouchMove As EventHandler(Of TouchEventArgs)
Tipo de evento
Comentarios
Información sobre eventos enrutadosRouted Event Information
Campo de identificadorIdentifier field | TouchMoveEvent |
Estrategia de enrutamientoRouting strategy | PropagaciónBubbling |
DelegadoDelegate | EventHandler<TEventArgs> de tipo TouchEventArgs.EventHandler<TEventArgs> of type TouchEventArgs. |
El evento de tunelización correspondiente es PreviewTouchMove .The corresponding tunneling event is PreviewTouchMove.
Invalide OnTouchMove para implementar el control de clases para este evento en las clases derivadas.Override OnTouchMove to implement class handling for this event in derived classes.