App.xaml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Application x:Class="WpfAppUI.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:WpfAppUI"
  5. StartupUri="View/MainWindow.xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml" />
  10. <ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
  11. <ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.DeepPurple.xaml" />
  12. <ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
  13. </ResourceDictionary.MergedDictionaries>
  14. <Style x:Key="BorderStyle" TargetType="Border">
  15. <Setter Property="Background" Value="#F3EEEA"/>
  16. <Setter Property="Padding" Value="7"/>
  17. <Setter Property="CornerRadius" Value="10"/>
  18. <Setter Property="Margin" Value="5"/>
  19. </Style>
  20. <Style x:Key="TextBlockCenter" TargetType="TextBlock">
  21. <Setter Property="HorizontalAlignment" Value="Center"/>
  22. <Setter Property="VerticalAlignment" Value="Center"/>
  23. </Style>
  24. <Style x:Key="HyperLinkStyle" BasedOn="{StaticResource MaterialDesignCaptionHyperlink}" TargetType="Hyperlink">
  25. <Setter Property="FontSize" Value="20"/>
  26. <Setter Property="FontWeight" Value="Light"/>
  27. </Style>
  28. <Style x:Key="EmploeeToolBarButton" BasedOn="{StaticResource MaterialDesignIconForegroundButton}" TargetType="Button">
  29. <Setter Property="Width" Value="30"/>
  30. <Setter Property="Height" Value="30"/>
  31. <Setter Property="Margin" Value="5,0,0,0"/>
  32. </Style>
  33. <SolidColorBrush x:Key="PrimaryHueLightBrush" Color="#797979"/>
  34. <SolidColorBrush x:Key="PrimaryHueLightForegroundBrush" Color="#FFFFFF"/>
  35. <SolidColorBrush x:Key="PrimaryHueMidBrush" Color="#797979"/>
  36. <SolidColorBrush x:Key="PrimaryHueMidForegroundBrush" Color="#FFFFFF"/>
  37. <SolidColorBrush x:Key="PrimaryHueDarkBrush" Color="#797979"/>
  38. <SolidColorBrush x:Key="PrimaryHueDarkForegroundBrush" Color="#FFFFFF"/>
  39. </ResourceDictionary>
  40. </Application.Resources>
  41. </Application>