Free-hand drawing

  • Thread starter Thread starter tijgetje
  • Start date Start date
T

tijgetje

Hello newsgroup,

I want to create a C# program in which the user is able to draw
free-handed (eg. Paint) on top of a picture. The program is for use on
pocket pc (edition windows mobile 2005).
Anyone any ideas, tips, samples (eg. for the painting)?


Thanks a lot!
Tari
 
Hi,

There is a signature control example in MSDN, I think that you can use that
as a start point for your request.
 
Hello newsgroup,

I want to create a C# program in which the user is able to draw
free-handed (eg. Paint) on top of a picture. The program is for use on
pocket pc (edition windows mobile 2005).
Anyone any ideas, tips, samples (eg. for the painting)?

for a start.. create a custom UserControl and override OnPaint,
OnMouseDown, OnMouseMove, OnMouseUp. Record what to paint in the OnMouse
methods and paint it in OnPaint.

More details needed.

hth,
Max
 
i dont think you need to do a Custom Control to do this...i made one without
using a Custom Control.....just a heads up that if you use the Graphics
object to draw, your drawings will be lost if your app is minimized or
another app gets focus over your form....to get around this, i suggest you
look at the GraphicsPath object....
 
Hello (e-mail address removed),

Use Microsoft Ink for this
See there http://www.codeproject.com/cs/media/inkanied.asp
Hello newsgroup,

I want to create a C# program in which the user is able to draw
free-handed (eg. Paint) on top of a picture. The program is for use on
pocket pc (edition windows mobile 2005).
Anyone any ideas, tips, samples (eg. for the painting)?
Thanks a lot! Tari
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top