ComboBox没有更新所选项目上的DataBindings更改(WinForms)

时间:2013-10-23 21:46:30

标签: c# winforms data-binding

我有一个绑定到数据源的ComboBox,但在控件失去焦点之前它不会更新绑定。如何在所选项目更改时获取更新绑定?在下面的屏幕截图中,我希望标签立即更新,以反映新的选择。

一些代码:

public enum MyEnum
{
  First,
  Second
}

public class MyData
{
  public String Name { get; set; }
  public MyEnum MyEnum { get; set; }
}  

样本表格:

public SampleForm()
{
  InitializeComponent ();   
  MyData data = new MyData () { Name = "Single Item" };
  this.bindingSource1.DataSource = data;
  this.comboBox1.DataSource = Enum.GetValues (typeof (MyEnum));
  this.label2.DataBindings.Add ("Text", this.bindingSource1, "MyEnum", true, DataSourceUpdateMode.OnPropertyChanged);
  this.comboBox1.DataBindings.Add (new System.Windows.Forms.Binding ("SelectedItem", this.bindingSource1, "MyEnum", true));
  this.comboBox1.DataBindings.Add (new System.Windows.Forms.Binding ("SelectedValue", this.bindingSource1, "MyEnum", true));
}

2 个答案:

答案 0 :(得分:9)

注释掉SelectedItem版本,并像这样修改SelectedValue绑定以包含UpdateMode:

this.comboBox1.DataBindings.Add(new Binding(
                                      "SelectedValue",
                                      this.bindingSource1,
                                      "MyEnum",
                                      true,
                                      DataSourceUpdateMode.OnPropertyChanged));

答案 1 :(得分:1)

LarsTech solution是正确的。您也可以在设计模式下执行此操作:

  1. ComboBox属性(F4) - > DataBindings节点 - >高级
    1. 点击'SelectedValue'并将数据源更新模式更改为'OnPropertyChanged' enter image description here