■ PointerDevice 클래스의 GetPointerDevices 정적 메소드를 사용해 터치 이용 가능 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 |
using System.Linq; using Windows.Devices.Input; bool touchEnabled = PointerDevice.GetPointerDevices().Any(pointerDevice => pointerDevice.PointerDeviceType == PointerDeviceType.Touch); |