App.xaml 1.9 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Application x:Class="GDNXFD.Alert.Config.App"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. Startup="App_Startup"
  6. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  7. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
  8. xmlns:vm="clr-namespace:GDNXFD.Alert.Config.ViewModel"
  9. xmlns:converters="clr-namespace:GDNXFD.Alert.Config.Converters"
  10. xmlns:resx="clr-namespace:GDNXFD.Alert.Config.Resources.Strings">
  11. <Application.Resources>
  12. <ResourceDictionary>
  13. <ObjectDataProvider x:Key="Provider" ObjectType="{x:Type resx:StringProvider}" MethodName="GetResourceInstance"/>
  14. <!--<vm:ViewModelLocator x:Key="Locator"/>-->
  15. <ResourceDictionary.MergedDictionaries>
  16. <ResourceDictionary Source="/Resources/Common/Buttons.xaml"/>
  17. <ResourceDictionary Source="/Resources/Common/Colors.xaml"/>
  18. <ResourceDictionary Source="/Resources/Common/CommonResources.xaml"/>
  19. <ResourceDictionary Source="/Resources/Common/ItemsPanel.xaml"/>
  20. <ResourceDictionary Source="/Resources/Common/ItemsTemplates.xaml"/>
  21. <ResourceDictionary Source="/Resources/Common/RadioButtonStyles.xaml"/>
  22. <ResourceDictionary Source="/Resources/Common/TextBlocks.xaml"/>
  23. <ResourceDictionary Source="/Resources/Common/InputElements.xaml"/>
  24. <ResourceDictionary Source="/Resources/Common/TextBoxes.xaml"/>
  25. <ResourceDictionary Source="/Resources/Common/Scroll.xaml"/>
  26. </ResourceDictionary.MergedDictionaries>
  27. </ResourceDictionary>
  28. </Application.Resources>
  29. </Application>