Hello,
I have a window with a RadToolbar and a button in this toolbar :
| <telerik:RadToolBar Height="32" HorizontalAlignment="Left" VerticalAlignment="Top" Width="388"> |
| <Button Height="23" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75" Name="button1"> |
| Test |
| </Button> |
| </telerik:RadToolBar> |
All works fine, my button looks like a toolbar button (no border, no background).
But if I put a style on my button (even if the style is empty) :
| <telerik:RadToolBar Height="32" HorizontalAlignment="Left" VerticalAlignment="Top" Width="388"> |
| <Button Height="23" HorizontalAlignment="Left" VerticalAlignment="Top" Width="75" Name="button1"> |
| Test |
| <Button.Style> |
| <Style TargetType="Button"> |
| </Style> |
| </Button.Style> |
| </Button> |
| </telerik:RadToolBar> |
my button looks like a normal button (with border and background).
Is there a workaround for this issue ?
Thank you.
