Arash
Arash

Reputation: 3061

Adding custom control to Visual Studio toolbox?

How can I add my custom WinForm button to the Toolbox in Visual Studio? I'm using Visual Studio 2008.

Upvotes: 0

Views: 379

Answers (2)

Neil Knight
Neil Knight

Reputation: 48587

Right mouse click it, click "Choose Items...". When this has loaded, click Browse. Locate your DLL/EXE and click Open. It should then appear in the listbox. Select it (if not selected already) and click OK.

Upvotes: 0

Henk Holterman
Henk Holterman

Reputation: 273621

Assuming WinForms,

right-click on the Toolbox and select "Choose items". Click the Browse button and select the DLL with your button.

Upvotes: 1

Related Questions