App.xaml 827 B

123456789101112131415161718
  1. <Application
  2. x:Class="FormulaOneApp.Classic.Windows.App"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:converters="using:FormulaOneApp.Classic.Windows.Converters">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary Source="/Themes/Colors.xaml" />
  10. <ResourceDictionary Source="/Themes/Hub.xaml"/>
  11. <ResourceDictionary Source="/Themes/List.xaml"/>
  12. </ResourceDictionary.MergedDictionaries>
  13. <!-- Converters -->
  14. <converters:NativeEventToImageConverter x:Key="EventToImageConverter" />
  15. </ResourceDictionary>
  16. </Application.Resources>
  17. </Application>