Himberjack
Himberjack

Reputation: 5792

VS Addin - How to add controls to IDE

I have created a VS addin. I'd like to interact with the user by adding a dropbox above the Solution Explorer. I can't figure out how to do that.

Thanks!

Upvotes: 1

Views: 128

Answers (1)

sll
sll

Reputation: 62484

See a code example of "VSSDK IDE Sample: Combo Box", it covers:

  • Adding a Drop Down Combo to Visual Studio and handling it
  • Adding an
  • Index Combo to Visual Studio and handling it Adding a MRU Combo to
  • Visual Studio and handling it Adding a Dynamic Combo to Visual
  • Studio and handling it Controling the programmatic name of the combo box commands by placing the commands within a menu ("Tools" in our case) of the main menu bar.

I believe you should start investigating VSIP (Visual Studio Integration SDK and Package information:

Upvotes: 2

Related Questions