我想在Propereties工具箱中显示我的用户控件的一些描述信息。 在为控件写入一些属性之后:
public partial class WebUserControl1 : System.Web.UI.UserControl
{
int id;
[Description("Get or Set the main name of the css class to apply")]
public string CssClass { get; set; }
[Description("Get the number of nodes")]
public int NodesCount
{
get
{
return id;
}
}
[Browsable(true),
Category("Behavior"),
DefaultValue(""),
Description("The Uri to find the Xml file"),
Editor(typeof(System.Web.UI.Design.XmlUrlEditor), typeof(UITypeEditor))]
public string XmlPath { get; set; }
工具箱中没有答案
任何想法?
答案 0 :(得分:0)
我已经确认了这一点,但我已经读过你,如果你在一个单独的项目中创建WebUserControl并添加.dll引用,那么你将获得你正在寻找的设计时支持。