Showing posts with label Drawing. Show all posts
Showing posts with label Drawing. Show all posts

Monday, July 20, 2009

Graphics, Form Double Buffer

I was trying to double buffer a graphic control I wrote. It would blink when redrawing. I was not double buffering because, the graph would not draw. I was using the control's CreateGraphics() method. You should use the e.CreateGraphics() on the paint event. This allows you to use the double buffer without the error of not drawing.

Friday, July 10, 2009

Drawing C#

C# drawing methods only take 16 bit points.

This is very limiting when it comes to drawing large scale graphics.