up vote 15 down vote favorite
3
share [g+] share [fb]

I have some UserControls that I created in ProjectA. I have ProjectB that has a windows form that I want to put the controls on. Both of these projects are in a single solution. There's a reference to ProjectA from ProjectB so it can "see" the UserControls.

However, the UserControls do not show up in the toolbox for me to drag to the windows form.

I've tried rebuilding. I've also deleted the 'bin' directory to force a rebuild-all.

How do I get VS2008 to populate the toolbox with my UserControls?

link|improve this question

I have this too. I can never work out why. – Craig Nov 13 '08 at 20:02
1  
i also have this problem. unfortunately none of the below ansers works for me. – clamp Jul 8 '09 at 8:57
I had a type Parameter in my UserControl, i.e. MyControl<T>, which meant that VS wouldn't show the control in the Toolbox. Once I got rid of the type parameter everything worked fine automatically. – liwp Feb 18 '11 at 11:50
feedback

11 Answers

up vote 26 down vote accepted

Check this setting:

Tools > Options > Windows Forms Designer > General : AutoToolboxPopulate

It should be set to True for this to work.

link|improve this answer
3  
In VS2010 this option is enabled by default. Remember to compile your project before looking the toolbox though. If you haven't compiled it, it won't be in the list even with this option enabled. – Corin Aug 7 '11 at 20:03
What do you mean by "compile"? I'm new to VS and .NET...I'm not familiar with this term. Can you please clarify? – creativeedg10 Oct 18 '11 at 18:59
@creativeedg10, compiling is the same as building (or rebuilding). It turns your code into something the computer can run. Unless you've changed the settings, your code will automatically compile before it runs. – Kyralessa Oct 18 '11 at 19:16
Oh I see. That makes sense, thank you. – creativeedg10 Oct 18 '11 at 20:04
feedback
  1. Build your project to make sure it compiles.

  2. With the form that you want your user control on, open the toolbox, right click and select "choose items"

  3. Browse to your .exe or dll that you compiled in step 1.

  4. make sure that your user control has a tick next to it, press OK.

  5. Your user control should appear in the toolbox, so drag it onto your form.

This is adapted from Calanus's answer to a similar question.

link|improve this answer
It worked but I had to uncheck the UserControl between steps 2 and 3. Thanks. – Ivan Ferrer Villa Oct 25 '11 at 12:43
feedback

Up until now, I had no problem with usercontrols not showing in the toolbox. Build the project and it just shows up. Then today not working. After a search I went through following but still no joy.

  • Tools > Options > Windows Forms Designer > General : AutoToolboxPopulate
  • Tools > Options > Text Editor > XMAL > Misc : AutoToolboxPopulate
  • Reset the VS settings to default

So after a few hours of messing around trying to get it to work with no success, I created a new WPF windows project accepting the default name and added a usercontrol. Built the project and the user control appeared as it always had.

I then thought that something might be wrong with my project or wpf window file. Removed the project, created a new one and added a new control. Built the project but it didnt work.

The only thing I did different was choose a name for the project, which I included a space in the name "WPF Application".

Removed the project again and created a new one again called "WPFApplication" without the space and added a user control. Built it and the user control showed up.

If you want usercontrols to show up automatically in the toolbox on build, dont use spaces in the project name. Hopefully this post save's someone else a ton of wasted time.

link|improve this answer
feedback

Usually you need to build the solution. That almost always works for me.

link|improve this answer
Thanks for solving my problem 2 years before I asked it =) – AndyPerfect Dec 11 '10 at 1:25
Thx for this :D – piotrek May 28 '11 at 16:41
feedback

In my case, the AutoToolboxPopulate was already set (Visual C# 2010 Express).

However, I had to activate "Show All" from the properties of the Toolbox (right click) to actually see my new user controls.

link|improve this answer
1  
I had to do the same, except in my case they were greyed out i.e. unusable. – glenneroo Dec 12 '10 at 16:18
feedback

Also double check that your user controls have a valid Namespace.

I just found that controls without namespace are not placed inside the ToolBox.

link|improve this answer
feedback

I had the same problem. After a lot of googling I did not find anything, but by chance I found out that if you click on the toolbox while you are in the same project that you have created the user control in, and check "show all", then a group with the same name as your project will appear at the top of toolbox which you can find your user control in. Now you can add your control on your desired form!

link|improve this answer
feedback

Check your build output directory. If for some reason you are building your output somewhere other than the project bin\ directory, your controls won't show up in your toolbox.

link|improve this answer
feedback

For someone who might be working with ToolStripItems (e.g. ToolStripStatusLabel), to actually get your derived control to show up in the dropdown menu (such as the one from StatusStrip), you need to set the class to public then build the solution.

Also don't forget the designer attribute for your class, something like this:

using System.Windows.Forms.Design;

[ToolStripItemDesignerAvailability(ToolStripItemDesignerAvailability.StatusStrip)]
public class MyStatusLabel : ToolStripStatusLabel
{
}

Took me a while to get it right. Hopefully this can save someone else's time.

link|improve this answer
feedback

It is possible for all of the above to fail.

I fixed it by creating a new user control (TestControl) and it triggered Visual Studio to magically add my project's controls tab + controls back into the Toolbox. Then I just deleted the test control.

This happened to me after recently installing a VS 2008 automated windows update, by the way.

link|improve this answer
feedback

What I usually do is create a new tab and add the exe/dll to that tab... Not too comfortable with that solution because of the load time and general hassle.

A friend showed me a way to speed this up. Instead of having to click "Choose Items..." in the toolbox,etc, for each new control you make - You can create a file named MyCustomControls and there you can create your custom controls.

Now you only have to do the "Choose Items..." and add this file ONCE. If you later on decide to add a new control, create it in MyCustomControls and then rebuild.
Then your toolbox will have your new control. (It will be displayed automatically with a regular compile if you have AutoToolboxPopulate I think)

This is unfortunate, because often you want to separate classes into "one class per file". It is horrible that you have to ruin your code architecture just because VS doesn't want to do it your way. :)

I am not too comfortable with this solution either but if you need to do something quick and you don't care about multiple user controls within a file or just are lazy, this might suit you well. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.