RawStylusInput.StylusDeviceId Property

Definition

Gets the identifier of the current stylus device.

public int StylusDeviceId { get; }

Property Value

The identifier of the current StylusDevice.

Examples

The following example ensures that the stylus points collected are from the same StylusDevice. This example is part of the bigger example in the RawStylusInput class overview.

// Collect the points as the user draws the stroke.
protected override void OnStylusDown(RawStylusInput rawStylusInput)
{
    // If points is not null, there is already a stroke taking place
    // on the digitizer, so don't create a new StylusPointsCollection.
    if (points == null)
    {
        points = new StylusPointCollection(rawStylusInput.GetStylusPoints().Description);
        points.Add(rawStylusInput.GetStylusPoints());
        currentStylus = rawStylusInput.StylusDeviceId;
    }
}

// Collect the points as the user draws the stroke.
protected override void OnStylusMove(RawStylusInput rawStylusInput)
{
    // Check whether the stylus that started the stroke is the same, and
    // that the element hasn't lost focus since the stroke began.
        if (points != null && currentStylus == rawStylusInput.StylusDeviceId)
    {
        points.Add(rawStylusInput.GetStylusPoints());
    }
}

// Collect the points as the user draws the stroke.
protected override void OnStylusUp(RawStylusInput rawStylusInput)
{
    // Check whether the stylus that started the stroke is the same, and
    // that the element hasn't lost focus since the stroke began.
    if (points != null && currentStylus == rawStylusInput.StylusDeviceId)
    {
        points.Add(rawStylusInput.GetStylusPoints());

        // Subscribe to the OnStylusUpProcessed method.
        rawStylusInput.NotifyWhenProcessed(points);
    }

    points = null;
    currentStylus = 0;
}

Applies to

Produto Versões
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9