MainStyle.xaml 620 B

12345678910111213141516
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style TargetType="{x:Type Label}">
  4. <Setter Property="Background" Value="Transparent"/>
  5. <Setter Property="Padding" Value="0"/>
  6. </Style>
  7. <Style TargetType="{x:Type Frame}">
  8. <Setter Property="Background" Value="#ddd"/>
  9. <Setter Property="Margin" Value="8"/>
  10. </Style>
  11. <Style x:Key="NavButton" TargetType="{x:Type Button}">
  12. <Setter Property="Margin" Value="0,8"/>
  13. </Style>
  14. </ResourceDictionary>