Este tema aún no ha recibido ninguna valoración - Valorar este tema

Stylus.PreviewStylusInRange (Evento asociado)

Occurs when the stylus comes within range of the tablet.

Espacio de nombres: System.Windows.Input
Ensamblado: PresentationCore (en PresentationCore.dll)
Espacio de nombres XML:  http://schemas.microsoft.com/winfx/2006/xaml/presentation

See Stylus.AddPreviewStylusInRangeHandler, Stylus.RemovePreviewStylusInRangeHandler
See Stylus.AddPreviewStylusInRangeHandler, Stylus.RemovePreviewStylusInRangeHandler
See Stylus.AddPreviewStylusInRangeHandler, Stylus.RemovePreviewStylusInRangeHandler
<object Stylus.PreviewStylusInRange="StylusEventHandler" .../>

The following example demonstrates how to determine whether the stylus is inverted. This example assumes that there is a TextBox called textBox1 and that the PreviewStylusInRange event is connected to the event handlers.

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");
    }
}

Microsoft .NET Framework 3.0 es compatible con Windows Vista, Microsoft Windows XP SP2 y Windows Server 2003 SP1.

¿Te ha resultado útil?
(Caracteres restantes: 1500)

Adiciones de comunidad

AGREGAR
© 2013 Microsoft. Reservados todos los derechos.