Re: Windows Applications Hi,
could any one tell me,how to avoid Flickering of an image during OnPaint Event.I used the following code to avoid flickering,even then it seems to happen.
this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
this.SetStyle(ControlStyles.UserPaint, true);
this.SetStyle(ControlStyles.DoubleBuffer, true);
Tell me the possible alternative. |