winform动态添加label怎么做??

winform动态添加label怎么做??,第1张

for (int i = 0i <numi++)

{

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)

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11496067.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存