{
Label t = new Label()
t.Size = new Size(100, 20)
t.Location = new Point(100, 100 + i*30)
this.Controls.Add(t)
}
Form2 f2=new Form2()这个是生成新的窗体了,如果你Form2 窗体已经显示出来了,那这个f2就和显示出来的不是一个实例。
Form2 f2=new Form2()
f2.Controls["flowlayoutpanel"].Controls.Add(*****)//*****应该是Control对象
f2.Show()
这个应该可以表示出来的
for (int i = 0i <10i++){
Label lbl = new Label()
lbl.Location = new Point(20, 20 * i)
lbl.Text = i.ToString()
this.Controls.Add(lbl)
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)