本帖最后由 caozhy 于 2014-07-05 23:26:23 编辑

解决方案 »

  1.   

    public void a()
    {
    System.String[][] str = list.ToArray();
        for (int k = 0; k < str.Length;k++ )
                {       int S = 31;
                   this.Invoke(new Action(() => {
                    PictureBox picBox = new PictureBox();
                    picBox.Location = 位置
                    picBox.Size = 大小
                    picBox.Name = "picBox" + k;
                    Controls.Add(picBox);
                    Label la = new Label();
                    ... //类似
                    }));
                    }
    }