I want to use some of these bitmaps on the MS Office Ribbon control, basically like:
ribbon:RibbonButton x:Name="btnCollapsed" SmallImageSource="Images\Collapsed.bmp"
The following is from: VS2010ImageLibrary\Objects\bmp_format\Office and VS_MSObjects_24bitColor_bmp_OfficeVS - Readme.html
"Visual Studio Image Library: Objects (24-Bit, .bmp Format, Office and Visual Studio style)
24-Bit Art This art is 24-bit color. Transparency should be achieved by mapping RGB:255,0,255 to the background color of the UI."
I am trying to use the VS 2010 Image Editor but can't figure out what I need to do. I am guessing I need to save the bmp as PNG but what else? I could manually change the RGB:255,0,255 of each bitmap I need to the pale blue background of the ribbon but I think there should be a simpler technique (e.g., like specifying what the transparent color is)
Any help greatly appreciated.