我正在准备一个快速的visual studio 2008加载项。其中一个关键命令是在“工具”菜单下放置菜单项:
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);
其中一个参数是59(第6个参数),它指的是插件可以使用的图标序号。显然有数百个可用。
是否有一个完整的图标列表,以便我能真正看到它们的样子?
最佳答案
这是名单:
http://www.kebabshopblues.co.uk/2007/01/04/visual-studio-2005-tools-for-office-commandbarbutton-faceid-property/
例如,整数59表示笑脸。