Ang*_*ker 4 c# add-in visual-studio-2008
我正在制作一个快速的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);
Run Code Online (Sandbox Code Playgroud)
其中一个参数是59(第6个参数),它指的是插件可以使用的图标序号.显然有数百种可用.
是否有完整的图标列表,以便我可以看到它们的样子?