为自定义控件设置Designer ToolBox属性

时间:2011-04-23 02:34:14

标签: c# icons controls designer

我已经在我的项目中使用了一些自定义控件,但是当我将鼠标悬停在工具箱中时,我无法弄清楚如何设置自制图标或描述,例如预制的visual studio控件。 / p>

http://i.stack.imgur.com/fB7DN.png

到目前为止,我已尝试使用此功能:

/// <summary>
/// Description of my Control
/// </summary>

将此属性添加到我的控件类:

[System.ComponentModel.Description("Description of my Control")]

但我无法弄清楚,有人知道吗?

感谢。

1 个答案:

答案 0 :(得分:1)

添加属性[System.ComponentModel.Description(“我的控件描述”)]正是您所需要的。但请务必在工具箱中安装控件,否则您将无法看到自定义说明。您可以通过在工具箱中添加新标签,然后选择所需的项目来完成此操作,例如here