Creating a Paint Screen

  • Thread starter Thread starter Bruno Alexandre
  • Start date Start date
B

Bruno Alexandre

Hi guys,

I'm builing this nice Clinic Register for Doctors, and one of the things
they asked me is a property that I can't know how to implement...

They want me to show a paint board (kind like MSN Messenger but simpler)
with a pencil and a rubber, so they can design the family tree of the
pacient...


I already serched Google with no luck in such property.... Does anyone
have ideias?

--



Bruno Alexandre
(Sintra, PORTUGAL)
 
Hi Bruno,

I hope I have understood what you are loooking for. Apologies if I have the
wrong end of the stick.

There is no inherent tool within the framework that I am aware of to provide
this functionality as a plugin to your application, however writing such a
beast is trivial in .NET.

Please check out owner drawn controls using GDI+. The control class exposes
all the events you will need to interact with the user, and drawing lines,
curves, rectangles etc is simple using the methods of the
System.Drawing.Graphics class.

I hope this helps to start you on the right path and that you have the
confidence to investigate the System.Drawing namespace.
 
it's a place to start...
I will try and find examples using GDI+


thank you for the thought.

--



Bruno Alexandre
(Sintra, PORTUGAL)
 
Back
Top