
If I attempt to add an image to a Separator, the image does not display. I'd like to display the separator along with a label and image. The documentation makes it appear that this is a supported case, because the Separator provides both ImageSourceSmall and ImageSourceLarge properties. Here's the code I'm using to set the image...
<ribbon:Menu x:Key="MenuX">
<ribbon:Separator Label="Test" ImageSourceSmall="pack://application:,,,/MyLibrary.UI;component/Images/Large/Image.png"/>
<ribbon:Button Label="X" ImageSourceSmall="pack://application:,,,/MyLibrary.UI;component/Images/Large/Image.png"/>
</ribbon:Menu>
Notice that the Button element below the separator DOES show the image, so I know there is nothing wrong with loading the image. Am I missing something?
Thanks