C# winform动态添加控件获取值问题
我在panel中添加了groupBox,在groupBox中动态添加label和RadioButton。现在想获取所有label和RadioButton的值放进list里...
我在panel中添加了groupBox,在groupBox中动态添加label和RadioButton。现在想获取所有label和RadioButton的值 放进list里面,要怎么做。以下是代码,但出错
foreach (Control con in panel1.Controls)
{
if (con is GroupBox)
{
foreach (Control c in con.Controls)
if (c is Label||c is RadioButton)
{
string Str = ((Label)c).Text;
string Stt = ((RadioButton)c).Text;
list.Add(Str);
list.Add(Stt);
}
}
}
Console.WriteLine(list);
错误提示:无法将类型 label 的对象强制转换为类型RadioButton。求大神 展开
foreach (Control con in panel1.Controls)
{
if (con is GroupBox)
{
foreach (Control c in con.Controls)
if (c is Label||c is RadioButton)
{
string Str = ((Label)c).Text;
string Stt = ((RadioButton)c).Text;
list.Add(Str);
list.Add(Stt);
}
}
}
Console.WriteLine(list);
错误提示:无法将类型 label 的对象强制转换为类型RadioButton。求大神 展开
3个回答
展开全部
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);
}
{
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);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
foreach (Control con in panel1.Controls)
{
if (con is GroupBox)
{
string Str="";
foreach (Control c in con.Controls)
if (c is Label)
{
Str = ((Label)c).Text;
}
else if(c is RadioButton)
{
Stt = ((RadioButton)c).Text;
}
list.Add(Stt);
}
}
{
if (con is GroupBox)
{
string Str="";
foreach (Control c in con.Controls)
if (c is Label)
{
Str = ((Label)c).Text;
}
else if(c is RadioButton)
{
Stt = ((RadioButton)c).Text;
}
list.Add(Stt);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
分开判断就得了呗
if (c is Label)
{
string Str = ((Label)c).Text;
list.Add(Str);
}
else if(c is RadioButton)
{
string Stt = ((RadioButton)c).Text;
list.Add(Stt);
}
if (c is Label)
{
string Str = ((Label)c).Text;
list.Add(Str);
}
else if(c is RadioButton)
{
string Stt = ((RadioButton)c).Text;
list.Add(Stt);
}
追问
但是,控件的值添加不到 list 里面,Console.WriteLine(list);这个输出依然是
System.Collections.Generic.List'1[System.String]
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询