![Avatar](https://secure.gravatar.com/avatar/015ee6e4116ebc9dda211a593ae9deac.jpg?s=64&d=identicon&r=g)
Is it possible to set the image of a ribbon button to a WPF path or other canvas element?
I can do it with a regular WPF button:
I can do it with a regular WPF button:
<Button>
<Button.Content>
<Polygon Points="100,0 75,75 100,100 125,75" Stroke="Black" StrokeThickness="2" Fill="Yellow"/>
</Button.Content>
</Button>