您好,我的 form1 中有 20 个图片框,我已经定位。我想将这 20 个图片框添加到我的图片框数组中。我需要帮助
private void Form1_Load(object sender, EventArgs e)
{
Control[] pBoxes = new PictureBox[20];
for (int i = 0; i < 20; i++)
{
pBoxes[i] = new PictureBox();
PBoxes[i] =System.Windows.Find("PictureBox" + i, true);
}
}
我试过这样但它没有用