c#选中动态生成的复选框放到集合里

 我来答
醉酒银虫
2015-01-20 · TA获得超过339个赞
知道小有建树答主
回答量:235
采纳率:0%
帮助的人:254万
展开全部
//这里是生成
string[] textArray = new string[] { "1", "2", "3", "4", "5", "6", "7" };
//这个string类型只是为了演示,可以使用别的类型。
foreach (var text in textArray)
{
    CheckBox check = new CheckBox();
    check.Text = text;//这里是对象的字符串表示
    check.Tag = text;//这里是原来的对象
    this.Controls.Add(check);//这里可以放具体的母控件
}

//这里是获取
List<string> selectedText = new List<string>();
foreach (CheckBox con in this.Controls)
{
    if (con != null && con.Checked)
    {
        string tag = con.Tag as string;
        if (tag != null)
            selectedText.Add(tag);
    }   
}
//selectedText里面就是所选的
百度网友4092aca
2017-09-18
知道答主
回答量:2
采纳率:0%
帮助的人:1662
引用醉酒银虫的回答:
//这里是生成string[] textArray = new string[] { "1", "2", "3", "4", "5", "6", "7" };//这个string类型只是为了演示,可以使用别的类型。foreach (var text in textArray){ CheckBox check = new CheckBox(); check.Text = text;//这里是对象的字符串表示 check.Tag = text;//这里是原来的对象 this.Controls.Add(check);//这里可以放具体的母控件}//这里是获取List<string> selectedText = new List<string>();foreach (CheckBox con in this.Controls){ if (con != null && con.Checked) { string tag = con.Tag as string; if (tag != null) selectedText.Add(tag); } }//selectedText里面就是所选的
展开全部
string tag = con.Tag as string; 有时候需要换成
string tag = con.Tag.Tostring();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式