Dictionary1.xaml 1.1 KB

1234567891011121314151617181920212223242526
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <LinearGradientBrush x:Key ="BackgroundWindowResource">
  4. <GradientStop Offset="0.00" Color="#FF87A0DE"/>
  5. <GradientStop Offset="0.50" Color="Azure"/>
  6. <GradientStop Offset="1.00" Color="#FF009CFF"/>
  7. </LinearGradientBrush>
  8. <Style TargetType="TextBlock" x:Key="baseTextBlockResource">
  9. <Setter Property="Margin" Value="25,15,25,5"/>
  10. <Setter Property="FontSize" Value="15"/>
  11. <Setter Property="FontFamily" Value="Verdana"/>
  12. </Style>
  13. <Style TargetType="TextBlock" BasedOn="{StaticResource baseTextBlockResource}" x:Key="hederTextBlockResource">
  14. <Setter Property="FontSize" Value="25" />
  15. <Setter Property="HorizontalAlignment" Value="Center"/>
  16. </Style>
  17. <Style TargetType="Button" x:Key="buttonResource">
  18. <Setter Property="Margin" Value="25,15"/>
  19. <Setter Property="Width" Value="60"/>
  20. <Setter Property="HorizontalAlignment" Value="Left"/>
  21. </Style>
  22. </ResourceDictionary>