Graphics flicker

  • Thread starter Thread starter Wade G
  • Start date Start date
W

Wade G

Is there a way to create a new Graphics object, write to
it, then copy the object to a controls Graphics object?
For example, I have a panel object that I want to draw
lines to using Invalidate() and the Paint handler. How
do I write my lines to a new object then copy this object
to the controls object so no flicker occurs?
 
Hi,

Do not invalidate the whole panel. Only invalidate the region you
want redrawn.

Ken
------------------
 
Google for 'double-buffering' in
microsoft.public.dotnet.framework.windowsforms.

Tom Dacon
Dacon Software Consulting
 

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

Similar Threads

Drawing Graphics and ZOrder 1
Panel flicker 4
Screen Flickering 22
VB 2005 graphics concepts 12
[VB 2008] Rotate a control 9
Too much screen flickering 3
Graphics Questions 3
flicker in control 1

Back
Top