views:

196

answers:

2

Is there a way to allow a user to draw with their stylus (a signature in my case) in a Windows Form? Something like InkCanvas in WPF.

I don't think I can use WPF in a compact framework project, or maybe I'm setting it up wrong.

thanks

+2  A: 

if there isnt any control to do that, you could do this manualy by catching the stylus events and drawing pixels when they occur.

Turek
I implemented it this way, its actually not so bad, thanks!
OTisler
+2  A: 

No, you can't use WPF in the Compact Framework, but OpenNETCF do a Mobile Ink Library which is open source. This library allows you to make a standard control on your form ink-aware and capture the data.

tomlog