App.xaml 1.0 KB

12345678910111213141516171819202122232425
  1. <Application x:Class="Esoft.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:Esoft"
  5. StartupUri="Pages/Authorization.xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary Source="Dictionary.xaml"/>
  10. </ResourceDictionary.MergedDictionaries>
  11. <!-- Добавляем глобальный стиль для TextBlock -->
  12. <Style TargetType="TextBlock">
  13. <Setter Property="FontFamily" Value="Arial Black"/>
  14. <Setter Property="FontSize" Value="20"/>
  15. </Style>
  16. <Style TargetType="Button">
  17. <Setter Property="FontFamily" Value="Arial Black"/>
  18. <Setter Property="FontSize" Value="20"/>
  19. </Style>
  20. </ResourceDictionary>
  21. </Application.Resources>
  22. </Application>