I'm trying to give the RepeatButton the flat look w/o overriding the ControlTemplate. With the regular Button you can do the following (but not with the RepeatButton):
<Button BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}">...
Is there something similar for the RepeatButton or for ButtonBase? I'm assuming no because if you put a RepeatButton in a ToolBar is does not get a flat look.
Is there a better way to give the RepeatButton a flat look other than overriding the ControlTemplate?
Here's what came up with for a flat RepeatButton Style with a Path as content:
Sample usage: