我怎么解决这个问题:
private void SetupBindings()
{
MyObj = new MyObjClass();
MyObjSource.DataSource = typeof(MyObjClass);
MyObjSource.Clear();
MyObjSource.Add(new MyObjClass());
txtMyField1.DataBindings.Add(new Binding("Text", MyObjSource, "MyField1", true));
}
private void blablabla()
{
// I need here update MyField1 of current MyObjSource object
// txtMyField1 text value must be updated
}
PS 如果 MyObjSource 中只存储一个对象,可以使用吗?
MyObjSource.DataSource = new MyObjClass()