Tracking graphics tablet input in C#

Posted by Martin on Stack Overflow See other posts from Stack Overflow or by Martin
Published on 2010-05-16T16:29:03Z Indexed on 2010/05/16 16:30 UTC
Read the original article Hit count: 422

Filed under:
|
|
|

I'm writing an XNA application with C#, and I want to be able to control the application with a graphics tablet. All I need to be able to do is track the position and pressure of the pen on the tablet, it would be nice to have some built in gesture recognition but I'm willing to build that myself if needed.

My first attempt at this was to use the vbtablet library. However, when I sent this to a friend it failed to work. It seems that the underlying technology is quite old and not supported by some tablets.

My second attempt is to play with the Microsoft.Ink system. This looks promising, but I know very little about this subject and I'm struggling to make it work properly - for example I can't find how to read the raw tablet input and disable mouse pointer mode on the tablet when using an InkOverlay.

What's the best system to use and what good documentation is there for a beginner in this field?

© Stack Overflow or respective owner

Related posts about graphics-tablet

Related posts about c#