在WinForm中,怎么实现在一个窗体中向另一个窗体动态添加控件

在WinForm中,怎么实现在一个窗体中向另一个窗体动态添加控件,第1张

动态添加控件,自己要 *** 作的就是new一个控件出来,然后this.controls.add(控件)方法添加进去,利用Location属性确定其起始位置,用size属性确定其大小,附代码双击鼠标添加testbox

private void from1_DoubleClick(object sender, EventArgs e)

{

TextBox mytestbox = new TextBox()

mytestbox.Location = PointToClient(MousePosition)

mytestbox.Size = new Size(100,50)//自己调整

this.Controls.Add(mytestbox)//添加,添到哪里自己调整

}

if

(c

is

Label||c

is

RadioButton)

{

string

Str

=

((Label)c).Text

string

Stt

=

((RadioButton)c).Text

list.Add(Str)

list.Add(Stt)

}

这是有问题啊,得分别判断是label还是RadioButton

然后再添加到list中。而且一次只能循环一个控件也不能一次就能把两中同时都能添加进去啊

应该这样改吧,你参考一下:

if

(c

is

Label)

{

string

Str

=

((Label)c).Text

list.Add(Stt)

}

if

(c

is

RadioButton)

{

string

Stt

=

((RadioButton)c).Text

list.Add(Str)

}


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存