Hello, I'm trying to figure out how to setup the Config.daml to create a buttonPalette in the ribbon that has a specific icon (instead of it simply adopting the icon of the first button within the palette).
I presume this is possible because the ribbon's built-in ESRI tools do this in several places, for example the buttons for Bookmarks has a different icon than it's first item within it.
I attempted to set a smallImage and largeImage value for the buttonPalette tag with something like this:
<palettes>
<buttonPalette id="SettingsPalette" caption="Settings" dropDown="true" menuStyle="true" showItemCaption="true" keyTip="PS" smallImage="CogWheel16" largeImage="CogWheel32" >
<button refID="SettingsForTool1Button" />
<button refID="SettingsForTool2Button" />
</buttonPalette>
</palettes>
But it didn't work. The icon for SettingsForTool1Button always becomes the icon for SettingsPalette.
If anyone has an idea of the correct way to do this, I'd love to know what it is.