App.xaml
1 <?xml version="1.0" encoding="utf-8" ?> 2 <Application 3 x:Class="Microsoft.CmdPal.UI.App" 4 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 5 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 6 xmlns:controls="using:Microsoft.CmdPal.UI.Controls" 7 xmlns:local="using:Microsoft.CmdPal.UI" 8 xmlns:services="using:Microsoft.CmdPal.UI.Services"> 9 <Application.Resources> 10 <ResourceDictionary> 11 <ResourceDictionary.MergedDictionaries> 12 <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" /> 13 <!-- Other merged dictionaries here --> 14 <ResourceDictionary Source="ms-appx:///Styles/Colors.xaml" /> 15 <ResourceDictionary Source="ms-appx:///Styles/TextBlock.xaml" /> 16 <ResourceDictionary Source="ms-appx:///Styles/TextBox.xaml" /> 17 <ResourceDictionary Source="ms-appx:///Styles/Settings.xaml" /> 18 <ResourceDictionary Source="ms-appx:///Controls/Tag.xaml" /> 19 <ResourceDictionary Source="ms-appx:///Controls/KeyVisual/KeyVisual.xaml" /> 20 <ResourceDictionary Source="ms-appx:///Controls/IsEnabledTextBlock.xaml" /> 21 <!-- Default theme dictionary --> 22 <ResourceDictionary Source="ms-appx:///Styles/Theme.Normal.xaml" /> 23 <services:MutableOverridesDictionary /> 24 </ResourceDictionary.MergedDictionaries> 25 <!-- Other app resources here --> 26 27 <x:Double x:Key="SettingActionControlMinWidth">240</x:Double> 28 <Style BasedOn="{StaticResource DefaultCheckBoxStyle}" TargetType="controls:CheckBoxWithDescriptionControl" /> 29 </ResourceDictionary> 30 </Application.Resources> 31 </Application>