请考虑以下事项:
public interface IHaveProperties
{
public MyProperties Properties { get; set; }
}
public class MyControlA : SomeWinFormsControl, IHaveProperties { ... }
public class MyControlB : SomeOtherWinFormsControl, IHaveProperties { ... }
public class MyProperties
{
public int Foo { get; set; }
public string Bar { get; set; }
public double Baz { get; set; }
...
}
这允许我们将相同的附加属性添加到我们无法修改base class的许多不同控件,以及保存/加载属性集。
现在我们有十几个不同的MyControlX,我们已经意识到能够将数据绑定到Properties.Bar
会很好。
显然我们可以这样做:
public interface IHaveProperties
{
public MyProperties Properties { get; set; }
public string Bar { get; set; }
}
public class MyControlA : SomeWinFormsControl, IHaveProperties
{
public string Bar
{
get { return Properties.Bar; }
set { Properties.Bar = value; }
}
}
...但是我们必须在十几个左右的控件中放入相同的代码,这看起来有点臭。
我们尝试了这个:
// Example: bind control's property to nested datasource property
myTextBox.DataBindings.Add(new Binding("Text", myDataSet, "myDataTable.someColumn"))
// works!
// bind control's (nested) Properties.Bar to datasource
myTextBox.DataBindings.Add(new Binding("Properties.Bar", someObject, "AProperty"))
// throws ArgumentException!
是否有某种方式通过以某种方式构造绑定或修改myControl.Properties.Bar
类来绑定到MyProperties
,而不是对所有控件进行相同的更改?
答案 0 :(得分:-2)
不应该是这样的:
TextBox.DataBindings.Add(new Binding("Text", someObject, "Properties.Bar"));