[CategoryAttribute("外观"),
DescriptionAttribute("我的Text"),
DefaultValue(true)]
public string MyText
   {
set{ myText = value; }
get{ return myText}
   }private string myText = "Hello World";这样可以让你的用户控件在设计模式下面的属性窗口里面,多出来一个【我的Text】属性
不知道是不是你要的效果