.NET compact framework signature drawing GUI element
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开发者_C百科 framework project, or maybe I'm setting it up wrong.
thanks
if there isnt any control to do that, you could do this manualy by catching the stylus events and drawing pixels when they occur.
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.
精彩评论