我想在我的自定义控件中公开一些属性。我需要获取三个参数的输入,这些参数作为Browsable
控件的属性公开。根据一个属性的输入,可能不需要另外两个属性。如何根据第一个属性的选择禁用/隐藏不需要的属性?
问问题
261 次
1 回答
3
是的,稍加思考,您就可以做到这一点:
public class TestControl : Control {
private string _PropertyA = string.Empty;
private string _PropertyB = string.Empty;
[RefreshProperties(RefreshProperties.All)]
public string PropertyA {
get { return _PropertyA; }
set {
_PropertyA = value;
PropertyDescriptor pd = TypeDescriptor.GetProperties(this.GetType())["PropertyB"];
ReadOnlyAttribute ra = (ReadOnlyAttribute)pd.Attributes[typeof(ReadOnlyAttribute)];
FieldInfo fi = ra.GetType().GetField("isReadOnly", BindingFlags.NonPublic | BindingFlags.Instance);
fi.SetValue(ra, _PropertyA == string.Empty);
}
}
[RefreshProperties(RefreshProperties.All)]
[ReadOnly(true)]
public string PropertyB {
get { return _PropertyB; }
set { _PropertyB = value; }
}
}
只要 PropertyA 为空字符串,这将禁用 PropertyB。
在描述此过程的代码项目中找到了这篇文章。
于 2011-12-30T15:29:15.867 回答