4个回答
展开全部
可以用foreach循环窗体所有的控件,判断如果这个控件是text的话,就取值什么的。
代码可以这样:
foreach (Control ctl in this.Controls)
{
if (ctl is TextBox)
{
string s = ((TextBox)ctl).Text;
}
}
代码可以这样:
foreach (Control ctl in this.Controls)
{
if (ctl is TextBox)
{
string s = ((TextBox)ctl).Text;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
foreach (Control c in Controls)
if( c is TextBox ) MessageBox.Show(c.Name+"="+c.Text);
if( c is TextBox ) MessageBox.Show(c.Name+"="+c.Text);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
如果要获取groupBox里面的Textbox,要改成这样:
foreach (Control c in Controls)
{
if (c is GroupBox)
{
foreach (Control d in c.Controls)
{
if (d is TextBox)
{
d.Text = "";
}
}
}
}
foreach (Control c in Controls)
{
if (c is GroupBox)
{
foreach (Control d in c.Controls)
{
if (d is TextBox)
{
d.Text = "";
}
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
string a= this.textbox,text
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询