
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>