问题描述
- 如何进行 DataType 属性设置
-
新做了一个控件,有一个 DataType 属性,类型为 System.Type ,希望能象下图一样选择系统的属性,应该在类中如何设计?
使用如下的方法,不行:
[Description("Value属性的类型"), Category("数据")]
[TypeConverter(typeof(System.Type))]
public Type DataType
{
get { return MyLabel.DataType; }
set { MyLabel.DataType = value; }
}
解决方案
解决方案二:
非常感谢!!!经过测试没有问题,谢谢大侠的指教!!!
时间: 2024-11-21 00:01:51