App.xaml 1013 B

123456789101112131415161718
  1. <Application
  2. x:Class="UniformMaterialManagementSystem.App"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. StartupUri="Views/LoginPage.xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <FontFamily x:Key="FluentSystemIconsFilled">pack://application:,,,/Resources/Fonts/FluentSystemIcons-Filled.ttf#FluentSystemIcons-Filled</FontFamily>
  9. <FontFamily x:Key="FluentSystemIconsRegular">pack://application:,,,/Resources/Fonts/FluentSystemIcons-Regular.ttf#FluentSystemIcons-Regular</FontFamily>
  10. <ResourceDictionary.MergedDictionaries>
  11. <ResourceDictionary Source="Resources/Icons.xaml" />
  12. <ResourceDictionary Source="Resources/Colors.xaml" />
  13. <ResourceDictionary Source="Resources/ControlStyle.xaml" />
  14. </ResourceDictionary.MergedDictionaries>
  15. </ResourceDictionary>
  16. </Application.Resources>
  17. </Application>