Udostępnij za pośrednictwem


StylusButton.Guid Właściwość

Definicja

Guid Pobiera przycisk stylus, który reprezentuje przycisk stylus.

public:
 property Guid Guid { Guid get(); };
public Guid Guid { get; }
member this.Guid : Guid
Public ReadOnly Property Guid As Guid

Wartość właściwości

Właściwość Guid reprezentująca przycisk stylus.

Przykłady

Poniżej sprawdza, czy użytkownik nacisnął przycisk beczki na stylus.

void OnStylusButtonDown(object sender, StylusButtonEventArgs e)
{
    StylusButton myStylusButton = e.StylusButton;

    if (myStylusButton.Guid == StylusPointProperties.BarrelButton.Id)
    {
        // the barrel button on the stylus has been pressed
    }
}
Private Sub OnStylusButtonDown(ByVal sender As Object, ByVal e As StylusButtonEventArgs)

    Dim myStylusButton As StylusButton = e.StylusButton
    If myStylusButton.Guid = StylusPointProperties.BarrelButton.Id Then
        ' the barrel button on the stylus has been pressed
    End If
End Sub

Uwagi

Wartość tej właściwości jest gwarantowana jako unikatowa wśród przycisków stylu w systemie.

Dotyczy