vote up 0 vote down star

I have a class in an external library subclassing UserControl and set to public. Now I want to use this usercontrol in my main WinForms app. I have added this external library to the references of the main app, but the user control haven't appeard in the Toolbox - I have been told it should appear.

I am doing this for the first time. So, sorry if my question is too trivial.

flag

Now I have a hard time chosing the 'accepted' answer since most of your replies are equally helpful. +1 for all. Thanks for the help! – Richard J. Terrell Apr 9 at 12:23

4 Answers

vote up 3 vote down check
  1. Right click on the title panel, in the Toolbox, where you want the control.
  2. Select Choose Items...
  3. Click the Browse... button on the .NET Framework Components tab in the dialog that pops up (might take a few seconds for it to show)
  4. Navigate to the external library, select the file and click Open.

All public controls from that library are now available for selection.

link|flag
vote up 2 vote down

You can add items to the toolbox by right-clicking on it, "Choose Items...". Then go and get a coffee - it takes ages to load. Locate your dll.

Note that adding an item from the toolbox will automatically add the reference to the project.

link|flag
vote up 1 vote down

Look under Tools->Options, navigate to Windows Forms Designer->General, and make sure "AutoToolboxPopulate" is set to true.

That's for VS 2008, but it should be in a similar place on earlier versions.

Note: I believe this may only work for your own projects. If it's referencing a compiled DLL, it may not get the controls from the DLL.

link|flag
vote up 2 vote down

You can right click on your toolbox and add it from the context menu...

link|flag

Your Answer

Get an OpenID
or

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