我需要在表单中显示 100 张图像,一张一张低于另一张。
我遵循以下想法:
在表单中添加了一个面板,在代码中我添加了 100 个图片框,并为每个图片框分配了我拥有的图像。
现在的问题是我只能看到 32 个图片框。
为什么?任何属性需要更新...?
下面是我的代码:
List<int> bottomlist = new List<int>();
for (int i = 0; i < 100; i++)
{
PictureBox pic = new PictureBox();
Image img = //I get image by some code here//
pic.Image = img;
pic.Size = img.Size;
if (i == 0)
bottomlist.Add(pic.Bottom + 8);
else
bottomlist.Add(pic.Bottom + bottomlist[i - 1] +8);
if (i == 0)
pic.Top = 8;
else
{
pic.Top = bottomlist[i - 1] + 8;
}
pic.Left = (panel1.ClientSize.Width - pic.Width) / 2;
panel1.Controls.Add(pic);
}