我正在开发Winform,我需要一个checkedlistbox。我将值存储在具有List属性的对象中:
public static class Fields
{
public static IList<string> FieldList { get; set; }
static Fields()
{ ...//populate FieldList }
}
现在我希望我的CheckedListBox使用Fields.FieldList作为数据源。在线搜索后,我发现我需要设置
//in myForm_Load
mycheckedListBox.DataSource = Fields.FieldList;
但myCheckedListBox没有DataSource属性。
我在这里错过了什么吗?
答案 0 :(得分:15)
根据文档,它应具有此属性... http://msdn.microsoft.com/en-us/library/system.windows.forms.checkedlistbox.datasource(VS.90).aspx
但是,我在前一个项目中也遇到了同样的问题,并使用this CodeProject article在我需要此功能的项目中对解决方案进行编码。
研究了一下,我确实找到了这个:
编辑:以上链接不再有效,但下面的例外情况来自曾经居住过的文章。
Microsoft于2005年5月30日上午10:28发布
感谢您的反馈 但这是设计的。我们不支持数据绑定 CheckedListBox控件。这些属性是从它继承而来的 类,不能删除所以我们隐藏它们形成属性网格和 智能感知。
这解释了为什么属性存在,但没有在Intellisense中显示。
此博客文章也值得一读:http://waxtadpole.wordpress.com/2009/10/12/assigning-custom-class-to-checkedlistbox-datasource/
答案 1 :(得分:4)
以下是我将List<T>
个User
个对象绑定到CheckedListBox的方法。
((ListBox)myCheckedListBox).DataSource = listOfUsers;
((ListBox)myCheckedListBox).DisplayMember = "FullName";
((ListBox)myCheckedListBox).ValueMember = "UserID";
当然不建议这样做,因为文档告诉我们这个属性是隐藏的。
上面的代码可行,但我注意到Visual Studio 2012中的一些副作用,例如:
呈现已检查标记的延迟:
单击所需的项目后,会出现令人烦恼的延迟,以便检查&#34;检查&#34;标记
就我而言,CheckOnClick
属性为True,CausesValidation
为False。
答案 2 :(得分:3)
这可以通过迭代您的可能数据源并一次添加其项目来解决。例如:
这会引起异常:
myCheckedListBox.DataSource = myStringList;
可以修改为:
foreach (string myString in myStringList)
{
myCheckedListBox.Items.Add(myString);
}
答案 3 :(得分:3)
我个人使用绑定到DataGridView
的{{1}},该DataTable
具有布尔字段以及显示值的字段。
如果您隐藏列标题和行标题,那么您将获得与CheckedListBox
提供的内容非常接近的内容。
答案 4 :(得分:1)
我知道这已经很久了;为了任何仍然有相同要求的人的利益,这里有什么对我有用。请注意,我没有使用DisplayMember
或ValueMember
属性,因为它似乎不鼓励(请参阅@David Stratton上面的文章)。
//References
// https://social.msdn.microsoft.com/Forums/vstudio/en-US/0e0da0c9-299e-46d0-b8b0-4ccdda15894c/how-to-assign-values-to-checkedlistbox-items-and-sum-these-values?forum=csharpgeneral
using Microsoft.Practices.EnterpriseLibrary.Data;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Windows.Forms;
namespace MyApp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
DatabaseProviderFactory factory = new DatabaseProviderFactory();
Database db = factory.Create("MyConnString");
DataTable dt = db.ExecuteDataSet(CommandType.StoredProcedure, "ProcGetCustomers").Tables[0];
var custlist = new List<CheckBoxItem<string, string>>();
for (int i = 0; i < dt.Rows.Count; i++)
{
custlist.Add(Create(dt.Rows[i]["DESC"].ToString(), dt.Rows[i]["CODE"].ToString()));
}
checkedListBox1.Items.AddRange(custlist.Cast<object>().ToArray());
}
public class CheckBoxItem<K, V>
{
public CheckBoxItem(K displayValue, V hiddenValue)
{
DisplayValue = displayValue;
HiddenValue = hiddenValue;
}
public K DisplayValue { get; private set; }
public V HiddenValue { get; private set; }
public override string ToString()
{
return DisplayValue == null ? "" : DisplayValue.ToString();
}
}
public static CheckBoxItem<K, V> Create<K, V>(K displayValue, V hiddenValue)
{
return new CheckBoxItem<K, V>(displayValue, hiddenValue);
}
}
}
答案 5 :(得分:0)
我通过将ToString()方法更改为应出现的名称来解决问题:
public static class Fields
{
public string MyDisplayMenber{ get; set; }
public override string ToString(){
return MyDisplayMenber;
}
}
并转换为包含对象的数组列表:
{
mycheckedlistbox.Items.AddRange(MyList.ToArray<Fields>());
}