gpt4 book ai didi

c# - 将复选框动态添加到不显示文本的 CheckBoxList

转载 作者:行者123 更新时间:2023-11-30 16:15:46 27 4
gpt4 key购买 nike

以下是我将复选框动态添加到 CheckBoxList 的代码:

foreach (WCore.CategoryFields cat in Global.getCategories())
{
CheckBox c = new CheckBox();
c.Text = cat.CategoryId;
c.Tag = cat.CategoryName;
if (ints != null)
{
if (ints.Contains(c.Tag))
Invoke(new Action(()=>checkedListBox1.Items.Add(c, true)));
else
Invoke(new Action(()=>checkedListBox1.Items.Add(c, false)));
}
else
Invoke(new Action(()=>checkedListBox1.Items.Add(c, false)));
}

问题是每当我运行这段代码时,都会添加复选框,但不会添加文本。像这样: enter image description here

我尝试对其进行调试,然后我发现 CheckBox 实例“c”正在获取文本但未显示它。

看这里: enter image description here

请告诉我这段代码出了什么问题?

更新

请注意,我不能这样使用它:

Invoke(new Action(()=>checkedListBox1.Controls.Add(c)));

因为那时最好使用面板而不是 CheckBoxList。我还想要两个值,一个显示为文本,另一个隐藏为 CheckBoxList 中每个 CheckBox 的值

更新 2

获取选中项的代码:

List<string> SelInts = new List<string>();
foreach (ListBoxItem c in checkedListBox1.SelectedItems)
{
SelInts.Add(c.Tag.ToString());
}

最佳答案

试试这个:

foreach (WCore.CategoryFields cat in Global.getCategories()){
ListBoxItem c = new ListBoxItem;
c.Text = cat.CategoryId;
c.Tag = cat.CategoryName;
if (ints != null)
{
if (ints.Contains(c.Tag))
Invoke(new Action(()=>checkedListBox1.Items.Add(c, true)));
else
Invoke(new Action(()=>checkedListBox1.Items.Add(c, false)));
}
else
Invoke(new Action(()=>checkedListBox1.Items.Add(c, false)));
}
//Add this class somewhere in your form class or beside it
public class ListBoxItem {
public string Text {get;set;}
public object Tag {get;set;}
public override string ToString(){
return Text;
}
}

我怀疑你的 CheckBox 不能以某种方式显示为字符串,尽管它应该显示 System.Windows.Forms.CheckBox 而不是空白。

关于c# - 将复选框动态添加到不显示文本的 CheckBoxList,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19214084/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com