I'm using PixelSnapper to clear-up the image on the footer buttons in the ribbon's application menu. It does the job nicely, but when I wrap the button in the PixelSnapper, the button background turns the color of the Application Menu's frame. Since I'm using the OfficeBalck theme, it's not too friendly.
The same thing happens if I wrap the buttons in a StackPanel like this:
What am I missing?
<ribbon:ApplicationMenu.FooterButtons>
<shared:PixelSnapper>
<ribbon:Button Label="Options" ImageSourceSmall="/WpfApplication1;component/Resources/OptionsHS.png" />
</shared:PixelSnapper>
<shared:PixelSnapper>
<ribbon:Button Label="Exit" ImageSourceSmall="/WpfApplication1;component/Resources/Exit.png" />
</shared:PixelSnapper>
</ribbon:ApplicationMenu.FooterButtons>
<ribbon:ApplicationMenu.FooterButtons>
<StackPanel Orientation="Horizontal" Margin="3">
<ribbon:Button Label="Options" ImageSourceSmall="/WpfApplication1;component/Resources/OptionsHS.png" />
<ribbon:Button Label="Exit" ImageSourceSmall="/WpfApplication1;component/Resources/Exit.png" />
</StackPanel>
</ribbon:ApplicationMenu.FooterButtons>