Canvas

  • Thread starter Thread starter user
  • Start date Start date
U

user

Hello
I'm looking for component in which i could draw calling functions like:
DrawLine(), DrawPoint() , SeTBrush().
(.net + C#)

Thanx
Michal
 
Hello,

This kind of operations is done on a Graphics objekt. How you get a
hold of a Graphics object depends on the situation. If you have a control
you can use the CreateGraphics() method. You could also create your
own Bitmap class object and pass it to the static method FromImage()
on the Graphics class.

HTH,

//Andreas
 
Back
Top