Reputation: 3061
How can I add my custom WinForm button to the Toolbox in Visual Studio? I'm using Visual Studio 2008.
Upvotes: 0
Views: 379
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
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