1

假设我的表单中有一个字符串属性(并且表单没有实现 INotifyPropertyChanged)。我还创建了一个 BindingSource 并将其 DataSource 设置为表单。然后我将一个文本框绑定到表单上的 String 属性(间接地,使用 BindingSource)。

问题1:我在运行时更改文本框中的值时,为什么不在String属性的setter中打断点?我认为将控件绑定到 String 属性将允许这个方向的更新(GUI -> 成员数据)自动发生

问题 2:当 GUI 以外的东西更改 String 属性时,如何触发另一个方向(成员数据 -> GUI)的更新?我不想实现 INotifyPropertyChanged 接口并将 NotifyPropertyChanged 添加到设置器。我认为通过使用 BindingSource 的 ResetBindings 我至少可以手动触发它

public partial class Form1 : Form
{
    private String m_blah;
    public String Blah
    { 
        get
        {
            return m_blah;
        }
        set
        {
            m_blah = value;
        }
    }

    public Form1()
    {
        InitializeComponent();
        textBox1.DataBindings.Add(new Binding("Text", bindingSource1, "Blah",true,DataSourceUpdateMode.OnValidation));
    }

    private void button1_Click(object sender, EventArgs e)
    {
        Blah = "Clicked!";
        this.bindingSource1.ResetBindings(false); //expecting the GUI to update and say "Clicked!"
    }
}
4

1 回答 1

6
this.bindingSource1.DataSource = this;

我认为您忘记分配数据源。

于 2013-04-18T05:02:16.260 回答