mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 08:27:58 +08:00
073caffef4
* Unify exe/dll naming - PowerToys.Runner Align naming with other exes - PowerToys Runner -> PowerToys.Runner * Unify exe/dll naming - Microsoft.PowerToys.Common.UI Project name - Microsoft.PowerToys.Common.UI -> Common.UI dll name - Microsoft.PowerToys.Common.UI.dll -> PowerToys.Common.UI.dll * Unify exe/dll naming - Settings Project names - Microsoft.PowerToys.Settings* -> Settings* Dll names - Microsoft.PowerToys.Settings*.dll -> PowerToys.Settings*.dll * Revert file autoformat * [Docs] Update paths to settings projects/files * Fix tests - Update path
33 lines
1.8 KiB
XML
33 lines
1.8 KiB
XML
<xaml:XamlApplication
|
|
x:Class="Microsoft.PowerToys.Settings.UI.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
xmlns:xaml="using:Microsoft.Toolkit.Win32.UI.XamlHost">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" ControlsResourcesVersion="Version2" />
|
|
<ResourceDictionary Source="/Controls/KeyVisual/KeyVisual.xaml" />
|
|
<ResourceDictionary Source="/Controls/IsEnabledTextBlock/IsEnabledTextBlock.xaml" />
|
|
<ResourceDictionary Source="/Styles/TextBlock.xaml" />
|
|
<ResourceDictionary Source="/Styles/Button.xaml"/>
|
|
<ResourceDictionary Source="/Themes/Colors.xaml"/>
|
|
<ResourceDictionary Source="/Themes/SettingsExpanderStyles.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<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>
|
|
|
|
<Style TargetType="ListViewItem" >
|
|
<Setter Property="Margin" Value="0,0,0,2" />
|
|
<Setter Property="Padding" Value="0,0,0,0" />
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
|
<Setter Property="IsTabStop" Value="False"/>
|
|
</Style>
|
|
|
|
<Style TargetType="controls:CheckBoxWithDescriptionControl" BasedOn="{StaticResource DefaultCheckBoxStyle}" />
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</xaml:XamlApplication> |