2011-06-30 42 views
4

我正在製作一個快速Visual Studio 2008加載項。其中一個關鍵的命令是放置在工具菜單下的菜單項:Visual Studio加載項圖標列表

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

[Visual Studio包含的圖標在哪裏?](http://stackoverflow.com/questions/301968/where-are-the-icons-included-with-visual-studio) –

+1

@Mr。失望 - 這絕不是這個問題的重複。 – AngryHacker

回答