Stylus.PreviewStylusInRange Evento adjunto

Definición

Se produce cuando el lápiz entra dentro del rango de una tableta.

see AddPreviewStylusInRangeHandler, and RemovePreviewStylusInRangeHandler
see AddPreviewStylusInRangeHandler, and RemovePreviewStylusInRangeHandler
see AddPreviewStylusInRangeHandler, and RemovePreviewStylusInRangeHandler

Ejemplos

En el ejemplo siguiente se muestra cómo determinar si se invierte el lápiz óptico. En este ejemplo se supone que hay un TextBox llamado textBox1 y que el PreviewStylusInRange evento está conectado a los controladores de eventos.

void textbox1_PreviewStylusInRange(object sender, StylusEventArgs e)
{
    if (e.StylusDevice.Inverted)
    {
        textbox1.AppendText("Pen is inverted\n");
    }
    else
    {
        textbox1.AppendText("Pen is not inverted\n");
    }
}
Private Sub textbox1_PreviewStylusInRange(ByVal sender As Object, _
    ByVal e As StylusEventArgs) Handles textbox1.PreviewStylusInRange

    If e.StylusDevice.Inverted Then
        textbox1.AppendText("Pen is inverted" & vbLf)
    Else
        textbox1.AppendText("Pen is not inverted" & vbLf)
    End If

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 PreviewStylusInRangeEvent
Estrategia de enrutamiento Protocolo de túnel
Delegado StylusEventHandler

Se aplica a

Consulte también