views:

120

answers:

1

hi

need signature sample on Windows-Mobile (paint)

how to draw on Windows-Mobile on screen - and save the Picture ?

can i get sample code (C#) ?

thank's in advance

+2  A: 

OpenNETCF has a signature control that does exactly this: http://www.opennetcf.com/library/sdf/html/e2ec2ece-e6f1-8e43-0f59-9270bf186c38.htm

Update: If you don't want to use that signature control, here is an answer that shows how to draw on a PictureBox (technically, how to draw on a Bitmap set as the picture box's Image property):

http://stackoverflow.com/questions/1537090/how-to-draw-drawings-in-picture-box/1537208#1537208

That code will work in Windows Mobile, also. To save what you've drawn as a bitmap file, just do this:

pictureBox1.Image.Save(...);
MusiGenesis