我无法理解为什么我的数据绑定似乎不适用于我的自定义类。我制作(黑客)我的类扩展Control类以添加数据绑定功能,但它实际上并没有绑定到我的自定义属性。
我的自定义类的代码是:
public class RadioButtonSet : System.Windows.Forms.Control
{
private Dictionary<System.Windows.Forms.RadioButton, int> buttonList;
private int selectedValue;
public RadioButtonSet()
{
buttonList = new Dictionary<System.Windows.Forms.RadioButton, int>();
}
public void AddButton(System.Windows.Forms.RadioButton button, int buttonValue)
{
if (this.buttonList.ContainsKey(button))
throw new Exception("Button set already contains specified button");
else if (buttonValue <= 0)
throw new Exception("Cannot add specified key to button set");
else if (button == null)
throw new Exception("Parameter button cannot be null");
else
{
button.CheckedChanged += button_CheckedChanged;
this.buttonList.Add(button, buttonValue);
}
}
private void setSelectedButton()
{
this.buttonList.FirstOrDefault(x => x.Value == this.selectedValue).Key.Checked = true;
}
private void button_CheckedChanged(object sender, EventArgs e)
{
System.Windows.Forms.RadioButton btn = sender as System.Windows.Forms.RadioButton;
this.selectedValue = this.buttonList[btn];
}
public int SelectedButton
{
get
{
return selectedValue;
}
set
{
selectedValue = value;
setSelectedButton();
}
}
}
我尝试使用以下内容绑定到此类,其中rbs_admin是我的自定义类的实例:
rbs_admin.DataBindings.Add(“SelectedButton”,datatable,“admin”);
我不知道哪些信息可能会有所帮助,所以这里有。
我从数据表中获取要绑定的信息,该数据表由数据适配器填充。这个自定义类不在它自己的文件中,它是我项目中另一个静态类的一部分。
我只是不明白,因为我创建了一个具有相同自定义属性的自定义文本框,它绑定并正常工作。
非常感谢任何帮助。
答案 0 :(得分:1)
someListControl.DataSource = datatable;
someListControl.DisplayMember = "someAnotherColumnName"
rbs_admin.DataBindings.Add("SelectedButton", datatable, "admin");
然后,从列表控件中选择一个项目将使您的控件根据所选项目更新其绑定。