StylusButtonCollection.GetStylusButtonByGuid(Guid) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 GUID가 식별하는 StylusButton을 가져옵니다.
public:
System::Windows::Input::StylusButton ^ GetStylusButtonByGuid(Guid guid);
public System.Windows.Input.StylusButton GetStylusButtonByGuid (Guid guid);
member this.GetStylusButtonByGuid : Guid -> System.Windows.Input.StylusButton
Public Function GetStylusButtonByGuid (guid As Guid) As StylusButton
매개 변수
- guid
- Guid
원하는 Guid을 지정하는 StylusButton입니다.
반환
지정된 GUID의 StylusButton입니다.
예제
다음 예제를 얻는 방법을 설명의 StylusButtonState 의 barrel button
.
void textbox1_StylusInRange(object sender, StylusEventArgs e)
{
StylusButtonCollection buttons = e.StylusDevice.StylusButtons;
StylusButton barrelButton = buttons.GetStylusButtonByGuid(StylusPointProperties.BarrelButton.Id);
if (barrelButton != null)
{
textbox1.AppendText(barrelButton.StylusButtonState.ToString());
}
textbox1.AppendText("\r\n");
}
Private Sub textbox1_StylusInRange(ByVal sender As Object, ByVal e As StylusEventArgs)
Dim buttons As StylusButtonCollection = e.StylusDevice.StylusButtons
Dim barrelButton As StylusButton = buttons.GetStylusButtonByGuid(StylusPointProperties.BarrelButton.Id)
If Not barrelButton Is Nothing Then
textbox1.AppendText(barrelButton.StylusButtonState.ToString())
End If
textbox1.AppendText(vbCr & vbLf)
End Sub
설명
StylusPointProperties 클래스에 포함 되어 있는 StylusPointProperty 태블릿 펜의 팁과 펜 단추. 사용 된 Id 단추와 연결 된 GUID를 가져올 속성입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET