멀티터치 관련 메세지
윈도우7 이상부터 지원
MSDN 코드 샘플 |
UINT cInputs = LOWORD(wParam); PTOUCHINPUT pInputs = new TOUCHINPUT[cInputs]; if (NULL != pInputs) { if (GetTouchInputInfo((HTOUCHINPUT)lParam, cInputs, pInputs, sizeof(TOUCHINPUT))) { // process pInputs if (!CloseTouchInputHandle((HTOUCHINPUT)lParam)) { // error handling } } else { // GetLastError() and error handling } delete [] pInputs; } else { // error handling, presumably out of memory } return DefWindowProc(hWnd, message, wParam, lParam); |
관련 한글 블로그
- Windows 7 멀티터치 시작하기
- 미리 정의된 9가지 제스쳐 지원하기 (WM_GESTURE)
- 멀티터치 Raw 데이터를 사용 (WM_TOUCH)
- Manipulation and Inertia 활용
- WPF4 멀티터치 프로그래밍
- 실버라이트 4의 멀티터치 프로그래밍