App.xaml 709 B

123456789101112131415
  1. <Application x:Class="SonopostSearchTool.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:SonopostSearchTool"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <ResourceDictionary>
  8. <ResourceDictionary.MergedDictionaries>
  9. <ResourceDictionary Source="Resources/Language/Chinese.xaml"/>
  10. </ResourceDictionary.MergedDictionaries>
  11. <SolidColorBrush x:Key="MainTheme" Color="#2C3444"></SolidColorBrush>
  12. </ResourceDictionary>
  13. </Application.Resources>
  14. </Application>