我正在制作一个快速的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个参数),它指的是插件可以使用的图标序号。显然有数百种可用。
是否有完整的图标列表,以便我能够真正看到它们的样子?
答案 0 :(得分:8)