Stylus.StylusSystemGesture Evento adjunto

Definición

Se produce cuando el usuario realiza un gesto de sistema con este lápiz.

see AddStylusSystemGestureHandler, and RemoveStylusSystemGestureHandler
see AddStylusSystemGestureHandler, and RemoveStylusSystemGestureHandler
see AddStylusSystemGestureHandler, and RemoveStylusSystemGestureHandler

Ejemplos

En el ejemplo siguiente se muestra cómo determinar el gesto del sistema que generó el StylusSystemGesture evento. En este ejemplo se supone que hay un TextBox llamado textBox1 y que el StylusSystemGesture evento está conectado a un controlador de eventos.

private void textbox1_StylusSystemGesture(object sender, StylusSystemGestureEventArgs e)
{
    textbox1.AppendText(e.SystemGesture.ToString() + "\n");
}
Private Sub textbox1_StylusSystemGesture(ByVal sender As Object, _
    ByVal e As StylusSystemGestureEventArgs) Handles textbox1.StylusSystemGesture

    textbox1.AppendText(e.SystemGesture.ToString() & vbLf)

End Sub

Comentarios

Se trata de un evento adjunto. WPF implementa eventos adjuntos como eventos enrutados. Un evento adjunto es, fundamentalmente, un concepto de lenguaje XAML que se usa para hacer referencia a eventos que se controlan en objetos que no definen eventos. WPF amplía aún más las funcionalidades de un evento adjunto, lo que le permite recorrer una ruta. Los eventos adjuntos no tienen una sintaxis de control directo en el código; para adjuntar controladores para un evento enrutado en el código, use un método Add*Handler designado. Para obtener más información, consulte Información general sobre eventos adjuntos.

Información sobre eventos enrutados

Campo identificador StylusSystemGestureEvent
Estrategia de enrutamiento Burbujeante
Delegado StylusSystemGestureEventHandler

Se aplica a

Consulte también