What is the best way to do a flicker-free animated C# custom control? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T11:10:04Zhttp://stackoverflow.com/feeds/question/182373http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/182373/what-is-the-best-way-to-do-a-flicker-free-animated-c-custom-control0What is the best way to do a flicker-free animated C# custom control?m_oLogin2008-10-08T12:01:40Z2009-06-02T15:17:22Z
<p>Hello community,</p>
<p>I am currently creating a custom control that needs to handle animation in a C# project. It is basically a listbox that contains a fixed number of elements that are subject to move. An element (another user control with a background image and a couple of generated labels) can move upwards, downwards or be taken out of the list. </p>
<p>I would like to create animated movement as the elements get moved around within the container custom control but it seems to me that moving controls around using lines such as</p>
<pre><code>myCustomControl.left -= m_iSpeed;</code></pre>
<p>triggered within a timer event is flickery and has a terrible rendering, even with double buffering turned on.</p>
<p>So here's the question : <strong>What is the best way to achieve a flicker-free animated C# control?</strong> Should I just not create custom controls and handle all of the drawing within a panel's background image that I generate? Is there a super animation method that I have not discovered? :)</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/182373/what-is-the-best-way-to-do-a-flicker-free-animated-c-custom-control/182463#1824631Answer by FryHard for What is the best way to do a flicker-free animated C# custom control?FryHard2008-10-08T12:23:14Z2008-10-08T12:23:14Z<p>A similar discussion took place this morning on this question. <a href="http://stackoverflow.com/questions/181374/visual-c-form-update-results-in-flickering">visual c# form update results in flickering.</a> so I will be lazy and give the same answer I gave there:</p>
<p>You could try to call <strong>this.SuspendLayout();</strong> before you start your move and <strong>this.ResumeLayout(false);</strong> when you have finished moving all of the controls. In this way all controls should draw at once and you should have less of a flicker.</p>
<p><em>On a side note I have tried to reproduce this here at work, but seem to be failing. Can you give some more sample code that I can fix maybe?</em></p>
http://stackoverflow.com/questions/182373/what-is-the-best-way-to-do-a-flicker-free-animated-c-custom-control/182473#1824730Answer by Lou Franco for What is the best way to do a flicker-free animated C# custom control?Lou Franco2008-10-08T12:25:29Z2008-10-08T12:25:29Z<p>The normal way to get flicker-free animation is to implement double-buffering. Take a look at this Code Project article</p>
<p><a href="http://www.codeproject.com/KB/GDI-plus/flickerFreeDrawing.aspx" rel="nofollow">http://www.codeproject.com/KB/GDI-plus/flickerFreeDrawing.aspx</a></p>
<p>Minimizing calls to paint until you are ready is also a good idea.</p>
http://stackoverflow.com/questions/182373/what-is-the-best-way-to-do-a-flicker-free-animated-c-custom-control/182474#1824742Answer by Mark Heath for What is the best way to do a flicker-free animated C# custom control?Mark Heath2008-10-08T12:25:30Z2008-10-08T12:25:30Z<p>your best bet for flicker-free animation is to do the painting yourself (use the Graphics object in the Paint event handler) and use double-buffering. In your custom control you will need code like this in the constructor:</p>
<pre><code>this.SetStyle(ControlStyles.UserPaint | ControlStyles.OptimizedDoubleBuffer |
ControlStyles.AllPaintingInWmPaint | ControlStyles.SupportsTransparentBackColor,
true);
</code></pre>
http://stackoverflow.com/questions/182373/what-is-the-best-way-to-do-a-flicker-free-animated-c-custom-control/900718#9007180Answer by Dan Hollingsworth for What is the best way to do a flicker-free animated C# custom control?Dan Hollingsworth2009-05-23T02:32:46Z2009-05-23T02:32:46Z<p>I am using double buffering.. Having the same problem. It would appear as though dumping the buffer at once is still haphazardly done with respect to vertical refresh.</p>
<p>I know there is a better method, becuase my own controls set next to Microsoft Out of the Box controls which do not flicker... </p>
<p>Is there no way to Suspend the Vertical Refresh while rendering the double buffer? Is there a way to delay the buffer copy until a retrace occurs?</p>
<p>It would seem that we lost valuable knowledge of the last 20 years of computing...</p>
<p>Dan -</p>
http://stackoverflow.com/questions/182373/what-is-the-best-way-to-do-a-flicker-free-animated-c-custom-control/940153#9401531Answer by Ian Boyd for What is the best way to do a flicker-free animated C# custom control?Ian Boyd2009-06-02T15:16:45Z2009-06-02T15:16:45Z<p><a href="http://stackoverflow.com/questions/76993/how-to-double-buffer-net-controls-on-a-form/77233#77233">See How to double buffer .NET controls on a form.</a></p>