■ GetSystemMetrics API 함수를 사용해 터치 이용 가능 여부를 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
using System.Runtime.InteropServices; #region 터치 이용 가능 여부 구하기 - IsTouchEnabled() /// <summary> /// 터치 이용 가능 여부 구하기 /// </summary> /// <returns>터치 이용 가능 여부</returns> public bool IsTouchEnabled() { int touchCount = GetSystemMetrics(95); // MAXTOUCHES_INDEX return touchCount > 0; } #endregion #region 시스템 메트릭 구하기 - GetSystemMetrics(index) /// <summary> /// 시스템 메트릭 구하기 /// </summary> /// <param name="index">인덱스</param> /// <returns>시스템 메트릭</returns> [DllImport("user32")] private static extern int GetSystemMetrics(int index); #endregion |