我是这样写的:
[
DefaultValue("正在加载"), 
TypeConverter(typeof(StringConverter)), 
Category("Appearance"),
Description("文本提示语。")  
]
public string Text
{
get
{
return text;
}
set
{
text = value;
}
}可是我将它拖到窗体中,却看不到默认值。
也不知道是哪儿出错了。。
只要是string类型的属性都看不到默认值,而int、bool类型的属性可以看到。求救!!!