Dictionary.xaml 653 B

1234567891011121314
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:local="clr-namespace:AuthKhritankov"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  4. <Style TargetType="{x:Type Label}">
  5. <Setter Property="Background" Value="Orange"/>
  6. <Setter Property="Padding" Value="0"/>
  7. </Style>
  8. <Style TargetType="{x:Type Button}">
  9. <Setter Property="Background" Value="Orange"/>
  10. <Setter Property="Padding" Value="0"/>
  11. <Setter Property="Width" Value="60"/>
  12. <Setter Property="Height" Value="20"/>
  13. </Style>
  14. </ResourceDictionary>