使用安装程序将 .NET 用户控件添加到 Visual Studio Toolbox
我正在创建一个 .NET 用户控件,我将使用商业安装程序分发该控件。当我的安装程序运行时,如何自动将用户控件添加到 Visual Studio 工具箱?
谢谢
I am creating a .NET user control that I will be distributing using a commercial Installer. How do I automatically add the user control to the Visual Studio Toolbox when my installer runs ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Visual Studio Toolbox Manager 是一种检查方法,这篇博文 参考了如何进行操作,就像大组件播放器,使用 Visual Studio SDK,他们也有一些该博客上包含示例代码的其他选项
Visual Studio Toolbox Manager is one approach to check into, also this blog post has reference to how to go about it like the big component players, using the visual studio SDK, they also have some other options with sample code on that blog
有工具箱控件安装程序。从 MSDN 检查此教程:教程:使用以下命令安装控件工具箱控件安装程序
There is Toolbox controls installer. Check this tutorial from MSDN : Tutorial: Installing Controls By Using the Toolbox Controls Installer
我写了这篇教程文章,讨论迄今为止我所知道的所有方法:
Visual Studio Toolbox Control 集成
Toolbox Controls Installer (TCI) 似乎是最方便的一个。
CodePlex 上的 Visual Studio 工具箱管理器很好,但速度很慢。我编写了一个处理 VS2012 的类似工具(可从文章中下载)。
最后,我写了一些关于更新和卸载控件的注释。
I wrote this tutorial article discussing all the methods I know about so far:
Visual Studio Toolbox Control Integration
The Toolbox Controls Installer (TCI) seems to be most convenient one.
The Visual Studio Toolbox Manager on CodePlex is fine, but quite slow. I wrote a similar tool (available for download from the article) which deals with VS2012.
Finally, I wrote some notes about updating and uninstalling the controls.