Dictionary.xaml 530 B

1234567891011121314151617181920212223
  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="Blue"/>
  5. <Setter Property="Padding" Value="0"/>
  6. </Style>
  7. <Style TargetType="{x:Type Button}">
  8. <Setter Property="Background" Value="Blue"/>
  9. <Setter Property="Padding" Value="0"/>
  10. </Style>
  11. </ResourceDictionary>