I have a custom control packed as myControl.dll. How to install it in VS2010 by using the WPF ToolBox Control template? I do not want to use the "Choose Toolbox..." or "Drag and Drop" techniques.
相关问题
- How does the setup bootstrapper detect if prerequi
- Visual Studio 2010 randomly says the command line
- (ASP.NET) Project file must include 'WindowsBa
- Partial Form Class C# - Only display code view for
- Installation of Leiningen 2.X in Mac OS X
相关文章
- How to show location of errors, references to memb
- Log4Net Multiple Projects
- Getting errors / failing tests when installing Pyt
- How do you make an installer for your python progr
- Compiling error in C++ project with C and C++ code
- How to use Mercurial from Visual Studio 2010?
- VSIX: execute code on VS startup
- Copy different file to output directory for releas
I wrote a thorough tutorial article on the topic:
Visual Studio Toolbox Control Integration
The "Choose Items..." is easiest choice for manual installation and is discussed in the article as well.
You can also bundle the control in VSI, VSIX or VSPackage, use VS Automation Object Model (DTE) or existing package pre-installed with VS2010 and newer called Toolbox Controls Installer (TCI).
Drag and drop does not work for VS Toolbox as far as I know.