Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有silverlight应用程序。他存在几个 SL dll,它们存在一些控件列表。在工具箱中,我看到了我所有的用户控件。它不太好,因为添加了一些控件来帮助主控件显示数据。
我可以设置一些属性/类扩展/其他人来隐藏控件吗?我在我的dll中使用了他。
谢谢
这也在这里得到了回答:
只需将[ToolboxItem(false)]属性添加到您不想在工具箱中显示的类。
[ToolboxItem(false)]
[ToolboxItem(false)] public class HelperControl : UserControl { ... }