Dictionary1.xaml 917 B

12345678910111213141516171819202122
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style TargetType="Button">
  4. <Setter Property="Background" Value="#FF4285F4"/>
  5. <Setter Property="Foreground" Value="White"/>
  6. <Setter Property="BorderBrush" Value="#FF4285F4"/>
  7. <Setter Property="BorderThickness" Value="1"/>
  8. <Setter Property="Padding" Value="10,5"/>
  9. <Setter Property="FontWeight" Value="Bold"/>
  10. <Style.Triggers>
  11. <Trigger Property="IsMouseOver" Value="True">
  12. <Setter Property="Background" Value="#FF3367D6"/>
  13. </Trigger>
  14. </Style.Triggers>
  15. </Style>
  16. <Style TargetType="Hyperlink">
  17. <Setter Property="FontStyle" Value="Oblique"/>
  18. <Setter Property="Foreground" Value="Black"/>
  19. </Style>
  20. </ResourceDictionary>