Hi.
I have a winform with a background image and a listview control, When i load the form i resize the form to the size of the primary screen on the form_load event. i get a flickering effect before the forms loads. I tried different ways but could not get a work around for this problem ...
I appreaciate if anyone could suggest some wayout .... Btw i am using VS 2005 .NET 2.0
thanks

winform flickering problem with Framework 2.0
Gregory_N
jeff_akbm
Use
this
.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer | ControlStyles.UserPaint, true);after InitializeComponent()
IanG