Simulating Touch Event in Windows 8

578 views Asked by At

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!

1

There are 1 answers

2
rufanov On BEST ANSWER

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.