mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-02 08:47:54 +08:00
65b6513207
* Updated FZ page with new resizing logic * Multiple UX fixes. Added updated resizing logic to other pages * Added ImageResizer file format example snippets to tooltip * Added warning icon in hotkeysettingscontrol * Fixed formatting * Keys label can now be set * Replaced custom titleblocks with converter * Updated strings * Added correct links to the images. Added PT description on General page as well. * Colorpicker image updates * Rounded corners * Fix * Added back in correct subtitles
22 lines
1.2 KiB
XML
22 lines
1.2 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:xaml="using:Microsoft.Toolkit.Win32.UI.XamlHost"
|
|
xmlns:converters="using:Microsoft.PowerToys.Settings.UI.Converters">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
|
|
<ResourceDictionary Source="/Styles/_Colors.xaml" />
|
|
<ResourceDictionary Source="/Styles/_FontSizes.xaml" />
|
|
<ResourceDictionary Source="/Styles/_Thickness.xaml" />
|
|
<ResourceDictionary Source="/Styles/_Sizes.xaml" />
|
|
<ResourceDictionary Source="/Styles/TextBlock.xaml" />
|
|
<ResourceDictionary Source="/Styles/Page.xaml"/>
|
|
<ResourceDictionary Source="/Styles/Button.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<converters:ModuleEnabledToForegroundConverter x:Key="ModuleEnabledToForegroundConverter"/>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</xaml:XamlApplication> |