如何进行 DataType 属性设置

新做了一个控件,有一个 DataType 属性,类型为 System.Type ,希望能象下图一样选择系统的属性,应该在类中如何设计?
图片说明

使用如下的方法,不行:
[Description("Value属性的类型"), Category("数据")]
[TypeConverter(typeof(System.Type))]
public Type DataType
{
get { return MyLabel.DataType; }
set { MyLabel.DataType = value; }
}

https://social.msdn.microsoft.com/Forums/vstudio/en-US/b26d3a0e-e937-4342-810e-f8db445f3fdd/uitypeeditor-for-data-type-systemtype-?forum=netfxbcl

非常感谢!!!经过测试没有问题,谢谢大侠的指教!!!