I need to process Gestures from a touch screen. I looked at https://msdn.microsoft.com/en-us/library/windows/desktop/dd353242(v=vs.85).aspx but the only example there was in C++, and I need it for C#. Does anyone know how to handle Gestures in C#?
I came so far as to get a private static IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled) function, but I'm not sure how to ID WM_GESTURE and get the GESTUREINFO in C#. Does GESTUREINFO even exist in C#?
Edit: A suggestion was made to use InkCollection - that seems mighty cool, but also seems to be a Windows Forms thing - I use WPF.