Sdílet prostřednictvím


StylusButton.Guid Vlastnost

Definice

Získá, Guid který představuje tlačítko pera.

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

Hodnota vlastnosti

Vlastnost Guid , která představuje tlačítko pera.

Příklady

Následující příkaz zkontroluje, jestli uživatel stiskl tlačítko pera.

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

Poznámky

Hodnota této vlastnosti je zaručena jako jedinečná mezi tlačítky pera v systému.

Platí pro