如何在C#中将checkedlistbox绑定到组合框



我有一个组合框,用户可以选择一个项目,并根据checkedlistbox中的该项目填充其他一些项目。

  1. 当数据库中的所有值都不同时,我可以将组合框绑定到该列。但是,在本例中,该列中有重复的项,我不希望有多个相同类型的项。我只想有一个";爬行器";以及一个";全地形";在组合框中

这是用于将源绑定到组合框的代码,但不适用于这种情况。

comboBox1.ValueMember = "crane index";
comboBox1.DisplayMember = "crane type";
comboBox1.DataSource = test.Tables["cranemaintable"];

这是数据库中的表

| Crane Index | Crane Model Number |  Crane Type |
|:-----------:|:------------------:|:-----------:|
| 221         | LR 1400-1          | Crawler     |
| 258         | CC 2800            | Crawler     |
| 262         | CC 2400-1          | All Terrain |
| 265         | CC 6800            | Crawler     |
| 277         | LR 11350           | All Terrain |
  1. 数据库:MS Access
  2. 数据集:测试
  3. 表格名称:cranemaintable

我已经检查了与我的问题相关的其他问题,但找不到问题的答案。我们将感谢您的帮助。谢谢

更新:这就是我所发现并为我工作的。

// create a list that holds all the crane types but it should not have duplicated items
List<string> crane_type = new List<string>();
for (int i = 0; i< test.Tables["cranemaintable"].Rows.Count; i++)
{
if (!crane_type.Contains(test.Tables["cranemaintable"].Rows[i]["crane type"]))
{
crane_type.Add(Convert.ToString(test.Tables["cranemaintable"].Rows[i]["crane type"]));
}                
}        
//bind the crane_type list to the combobox1
comboBox1.DataSource = crane_type;

好的,首先我的答案很难看,但它有效,而且是我唯一知道的,所以我们从您将数据库选项卡导入列表开始这是一个你可以使用的类

public class myclass
{
public string CraneIndex { get; set; }
public string CraneModelNumber { get; set; }
public string CraneType { get; set; }
}

然后制作3个列表

List<myclass> myclasses = new List<myclass>();
List<myclass> myclasses1 = new List<myclass>();
List<myclass> myclasses2 = new List<myclass>();

在这里,您将表导入列表myclasses,然后我们过滤来自数据库的主列表,使其仅具有唯一类型

myclasses1 = myclasses.GroupBy(myclass => myclass.CraneType).Select(x => x.First()).ToList();
comboBox1.DataSource = myclasses1;
comboBox1.DisplayMember = "CraneType";

转到combobox并订阅selectedindexchanged属性,并将其添加到其函数中

myclasses2.Clear();
foreach (var item in myclasses)
{
if (comboBox1.Text==item.CraneType)
{
myclasses2.Add(item);
}
}
checkedListBox1.Items.Clear();
foreach (var item in myclasses2)
{
checkedListBox1.Items.Add(item.CraneModelNumber);
}
this.checkedListBox1.DisplayMember = "cranemodels";
checkedListBox1.Refresh();

如果你需要更多的帮助或解释,请告诉我。

相关内容

  • 没有找到相关文章

最新更新