I have a DockPanel that has Styled Buttons to fit the look of tabs for my MultiLayoutPanel.
<DockPanel Visibility="{HomeVisibility}">
<Style>
<Button ux:InheritStyle="false" ClipToBounds="False"
Margin="0,0,0,4" Background="#bdc3c7" Name="self">
<Fuse.BasicTheme.ButtonText TextColor="#FFF" Font="RobotoMedium" Value="{Property self.Text}"
TextAlignment="Center"/>
</Button>
</Style>
If I want to re-style the buttons inside the DockPanel ,to look like the original Button style, in my PageControl how would I do this?