I'm creating an application (C#) using finger tracking via camera, and need to simulate a touch even where the user's finger is located.
How do I simulate a touch event within Windows 8? This is a Windows 8 only application, so don't worry about compatibility.
Thank you guys!
Windows have InjectTouchInput function for simulating touch input. There is .NET-wrapper for it in TCD.System.TouchInjection NuGet package. Also you can try to pInvoke it by yourself - it's not very complicated.