Share via


StylusDevice.StylusButtons Özellik

Tanım

Ekran kalemi üzerindeki ekran kalemi düğmelerini alır.

public:
 property System::Windows::Input::StylusButtonCollection ^ StylusButtons { System::Windows::Input::StylusButtonCollection ^ get(); };
public System.Windows.Input.StylusButtonCollection StylusButtons { get; }
member this.StylusButtons : System.Windows.Input.StylusButtonCollection
Public ReadOnly Property StylusButtons As StylusButtonCollection

Özellik Değeri

Ekran kalemindeki tüm düğmeleri temsil eden bir StylusButtonCollection nesneye başvuru.

Örnekler

Aşağıdaki örnekte özelliği gösterilmektedir StylusButtons .

StylusButtonCollection myStylusButtonCollection = myStylusDevice.StylusButtons;

if (null == myStylusButtonCollection)
{
    textbox1.AppendText("StylusButtons: null\n");
}
else
{
    textbox1.AppendText("# of StylusButtons == " + myStylusButtonCollection.Count.ToString() + "\n");
}
Dim myStylusButtonCollection As StylusButtonCollection = myStylusDevice.StylusButtons

If IsNothing(myStylusButtonCollection) Then
    textbox1.AppendText("StylusButtons: null" + vbCrLf)
Else
    textbox1.AppendText("# of StylusButtons == " + myStylusButtonCollection.Count.ToString() + vbCrLf)
End If

Şunlara uygulanır