没有母校,我似乎什么,我不能得到一个自定义属性为我控制在编辑器的属性菜单中显示出来。在线阅读似乎可以解决以下问题,但事实并非如此。
public class CustomControl : System.Windows.Forms.Control
{
public CustomControl() : base()
{
}
[Description("A test property"),
Category("Appearance"),
DefaultValue("test"),
Browsable(true)]
public string MyCustomProperty { get; set; }
}
编辑:好的,所以我关闭并重新打开了至少3次项目。试图编译控制组件分开,然后将其添加为基准的。一切都无济于事。现在突然之间,似乎没有任何原因出现。