我在一个由 Ex-Employee 为自定义 gridview 开发的项目中找到了这段代码,该项目带有自定义控件,效果很好,但我不确定它到底在做什么,
代码:
public class aBoundField : ImageField
{
//here I got some get set properties defined
protected override void OnDataBindField(object sender, EventArgs e)
{
Control control = (Control)sender;
PropertyDescriptor propertyA = TypeDescriptor.GetProperties(DataBinder.GetDataItem(control.NamingContainer)).Find("boundField", true);
PropertyDescriptor propertyB = TypeDescriptor.GetProperties(DataBinder.GetDataItem(control.NamingContainer)).Find("boundField", true);
PropertyAFieldValue = this.GetValue(control.NamingContainer, this._PropertyAField, ref propertyA).ToString();
PropertyBFieldValue = this.GetValue(control.NamingContainer, this._PropertyBField, ref propertyB).ToString();
base.OnDataBindField(sender, e);
}
方法中发生了什么, OnDataBindField
尤其是在获取 PropertyDescriptor 时。我做了一些研究,发现它是一个属性包,但如果它是一个属性包,它怎么知道这段代码中属性 A 或属性 B 的值是多少。
PropertyDescriptor propertyA = TypeDescriptor.GetProperties(DataBinder.GetDataItem(control.NamingContainer)).Find("boundField", true);
PropertyDescriptor propertyB = TypeDescriptor.GetProperties(DataBinder.GetDataItem(control.NamingContainer)).Find("boundField", true);
我不完全明白的是
属性描述符如何 使用相同的代码行获取两个控件的值
TypeDescriptor.GetProperties(DataBinder.GetDataItem(control.NamingContainer)).Find("boundField", true)
上面的代码行将如何确定它是用于属性 A 还是属性 B。
我试图从一个属性描述符中获取值,认为它是一个属性包,但它不能正常工作。