dotnetman Posted June 23, 2005 Posted June 23, 2005 Friends, I have created a player and have used pictures to create the console and other controls. It also has a zoom function which basically changes the size of the form, thus changing the size of the other controls too (anchored). However, whenever it does this, it takes some time and gives this flickering effect till all the images are rendered. I have used pictureboxes for the control images. Is there a way of speeding this up? I have used double buffer but to no avail. HELP!!! DNM Quote
Diesel Posted June 23, 2005 Posted June 23, 2005 In resize, or whenever redrawing the form... Form.SuspendLayout() ''draw images Form.ResumeLayout(false) Quote
dotnetman Posted June 27, 2005 Author Posted June 27, 2005 In resize, or whenever redrawing the form... Form.SuspendLayout() ''draw images Form.ResumeLayout(false) Thanks Diesel. It sure has sped up the rendering manifold :cool: Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.