Avoiding flicker in winforms
Winforms applications flicker quite a bit when you have TableLayoutPanels, Panels, etc especially when the forms/controls are resized and/or have background images. The cause for the the flicker is simple – excessive repainting, both at design-time as well as the runtime. The solution – double-buffering; when repainting the graphics on a control, .net uses a […]