123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <Application x:Class="GDNXFD.Alert.Config.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- Startup="App_Startup"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
- xmlns:vm="clr-namespace:GDNXFD.Alert.Config.ViewModel"
- xmlns:converters="clr-namespace:GDNXFD.Alert.Config.Converters"
- xmlns:resx="clr-namespace:GDNXFD.Alert.Config.Resources.Strings">
- <Application.Resources>
- <ResourceDictionary>
- <ObjectDataProvider x:Key="Provider" ObjectType="{x:Type resx:StringProvider}" MethodName="GetResourceInstance"/>
- <!--<vm:ViewModelLocator x:Key="Locator"/>-->
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/Resources/Common/Buttons.xaml"/>
- <ResourceDictionary Source="/Resources/Common/Colors.xaml"/>
- <ResourceDictionary Source="/Resources/Common/CommonResources.xaml"/>
- <ResourceDictionary Source="/Resources/Common/ItemsPanel.xaml"/>
- <ResourceDictionary Source="/Resources/Common/ItemsTemplates.xaml"/>
- <ResourceDictionary Source="/Resources/Common/RadioButtonStyles.xaml"/>
- <ResourceDictionary Source="/Resources/Common/TextBlocks.xaml"/>
- <ResourceDictionary Source="/Resources/Common/InputElements.xaml"/>
- <ResourceDictionary Source="/Resources/Common/TextBoxes.xaml"/>
- <ResourceDictionary Source="/Resources/Common/Scroll.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- </ResourceDictionary>
- </Application.Resources>
- </Application>
|