Forms VS扩展开发人员:是否有内置按钮图标列表?

Forms VS扩展开发人员:是否有内置按钮图标列表?,forms,button,icons,Forms,Button,Icons,我正在开发一个VisualStudio扩展。查看一些示例,我注意到按钮有内置图标,例如刷新按钮: 我的问题是:是否有此图标组“guidOfficeIcon”的可用ID列表?在网络周围挖掘,我发现了其他一些:MSOTCIDCOCK、msotcidNoIcon、msotcidGears。。。但如果能有一份所有这些人的名单就好了 谢谢你的建议 过了一段时间,我终于找到了。图像ID的列表可以在文件msobtnid.h中找到,该文件可以在这里找到 我只是花了几个小时寻找同样的东西。该文件位于Prog

我正在开发一个VisualStudio扩展。查看一些示例,我注意到按钮有内置图标,例如刷新按钮:


我的问题是:是否有此图标组“guidOfficeIcon”的可用ID列表?在网络周围挖掘,我发现了其他一些:MSOTCIDCOCK、msotcidNoIcon、msotcidGears。。。但如果能有一份所有这些人的名单就好了


谢谢你的建议

过了一段时间,我终于找到了。图像ID的列表可以在文件msobtnid.h中找到,该文件可以在这里找到


我只是花了几个小时寻找同样的东西。该文件位于Program Files\Microsoft Visual Studio 2010 SDK\VisualStudioIntegration\Common。事后诸葛亮,答案就在我们眼前,vs软件包向导创建的vcst文件指定

<!--This is the file that defines the IDs for all the commands exposed by VisualStudio. -->
<Extern href="stdidcmd.h"/>
<!--This header contains the command ids for the menus provided by the shell. -->
<Extern href="vsshlids.h"/>
<!--Definition of some VSCT specific constants. In this sample we use it for the IDs inside the guidOfficeIcon group. -->
<Extern href="msobtnid.h"/>


我想我只是想在线搜索一些免费的.bmp图标。Visual Studio图像库也很有用:
<!--This is the file that defines the IDs for all the commands exposed by VisualStudio. -->
<Extern href="stdidcmd.h"/>
<!--This header contains the command ids for the menus provided by the shell. -->
<Extern href="vsshlids.h"/>
<!--Definition of some VSCT specific constants. In this sample we use it for the IDs inside the guidOfficeIcon group. -->
<Extern href="msobtnid.h"/>