I am preparing a Quick Visual Studio 2008 add-in. One of the key commands is to put a menu item in the Tools menu:
Command command = commands.AddNamedCommand2(_addInInstance, "MyAddin", "My Addin", "Executes the command for MyAddin", true, 59, ref contextGUIDS, (int)vsCommandStatus.vsCommandStatusSupported +(int)vsCommandStatus.vsCommandStatusEnabled, (int)vsCommandStyle.vsCommandStylePictAndText, vsCommandControlType.vsCommandControlTypeButton);
One of the parameters is 59 (the 6th parameter), which refers to the serial number of the icon that the plugin can use. There are apparently hundreds available.
Is there a complete list of icons somewhere so that I can really see how they look?
source share