I have some PictureBox objects in foreach. It loops all the PictureBoxes and loads images from the internet for them. Each PictureBox has a different picture downloading. It works good, but the problem is the application freezes until all the images load. Is there a way to make them appear one by one and not all at the same time?
Code:
index++;
lpb[index].Load(url);
//lpb is a list of PictureBoxes (List<PictureBox>)
Thanks!