我需要在一个周期内处理很多图片框。我怎样才能做到这一点?我试过这个:
for (int i = 1; i <= 10; i++)
{
PictureBox[] pb = new PictureBox[i];
pb[i].Image = global::Ippodrom.Properties.Resources.horse;
}
但它崩溃了:
An unhandled exception of type 'System.IndexOutOfRangeException' occurred in Ippodrom.exe
Additional information: Index was outside the bounds of the array.
我该怎么办?
UPD:我需要更改创建的图片框中的图片,而不是创建新的图片框。