12345678910111213141516 |
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <Style TargetType="{x:Type Label}">
- <Setter Property="Background" Value="Transparent"/>
- <Setter Property="Padding" Value="0"/>
- </Style>
- <Style TargetType="{x:Type Frame}">
- <Setter Property="Background" Value="#ddd"/>
- <Setter Property="Margin" Value="8"/>
- </Style>
- <Style x:Key="NavButton" TargetType="{x:Type Button}">
- <Setter Property="Margin" Value="0,8"/>
- </Style>
- </ResourceDictionary>
|