2020-03-07 09:46:51 +08:00
|
|
|
<xaml:XamlApplication
|
2020-03-12 01:43:32 +08:00
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.App"
|
2020-03-07 09:46:51 +08:00
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
2021-10-19 19:44:13 +08:00
|
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
2021-08-24 01:48:52 +08:00
|
|
|
xmlns:xaml="using:Microsoft.Toolkit.Win32.UI.XamlHost">
|
2020-03-10 14:55:08 +08:00
|
|
|
<Application.Resources>
|
2020-03-12 01:43:32 +08:00
|
|
|
<ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2021-08-24 01:48:52 +08:00
|
|
|
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" ControlsResourcesVersion="Version2" />
|
2021-04-05 16:52:44 +08:00
|
|
|
<ResourceDictionary Source="/Controls/KeyVisual/KeyVisual.xaml" />
|
2021-10-19 19:44:13 +08:00
|
|
|
<ResourceDictionary Source="/Controls/IsEnabledTextBlock/IsEnabledTextBlock.xaml" />
|
2020-03-12 01:43:32 +08:00
|
|
|
<ResourceDictionary Source="/Styles/TextBlock.xaml" />
|
2020-05-12 03:36:55 +08:00
|
|
|
<ResourceDictionary Source="/Styles/Button.xaml"/>
|
2021-08-24 01:48:52 +08:00
|
|
|
<ResourceDictionary Source="/Themes/Colors.xaml"/>
|
|
|
|
<ResourceDictionary Source="/Themes/SettingsExpanderStyles.xaml"/>
|
2020-03-12 01:43:32 +08:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
2021-08-24 01:48:52 +08:00
|
|
|
|
|
|
|
<Thickness x:Key="InfoBarIconMargin">6,16,16,16</Thickness>
|
|
|
|
<Thickness x:Key="InfoBarContentRootPadding">16,0,0,0</Thickness>
|
|
|
|
<x:Double x:Key="SettingActionControlMinWidth">240</x:Double>
|
|
|
|
|
2021-12-20 20:15:08 +08:00
|
|
|
<Style TargetType="ListViewItem">
|
2021-08-24 01:48:52 +08:00
|
|
|
<Setter Property="Margin" Value="0,0,0,2" />
|
|
|
|
<Setter Property="Padding" Value="0,0,0,0" />
|
|
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
2021-11-30 21:43:04 +08:00
|
|
|
<Setter Property="IsTabStop" Value="False"/>
|
2021-08-24 01:48:52 +08:00
|
|
|
</Style>
|
2021-10-19 19:44:13 +08:00
|
|
|
|
|
|
|
<Style TargetType="controls:CheckBoxWithDescriptionControl" BasedOn="{StaticResource DefaultCheckBoxStyle}" />
|
2020-03-12 01:43:32 +08:00
|
|
|
</ResourceDictionary>
|
2020-03-10 14:55:08 +08:00
|
|
|
</Application.Resources>
|
2020-03-07 09:46:51 +08:00
|
|
|
</xaml:XamlApplication>
|