mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 16:37:58 +08:00
c39be3dbc9
* Updated the add button styles to a standard used in W10 settings * Updated the "About this feature" text to About [Module name] * Set larger changes to the Shortcut Guide opacity numberbox * Re-organised the General page * Improved width of the add button so it's inline with the corresponding listview. * Seperated warning label from header. Re-organised general settings * Consistent formatting of the word 'administrator' * Typo fix * Warning text is collapsed when the user runs the app as admin * Removed underline of version number * XAML fix
20 lines
1.1 KiB
XML
20 lines
1.1 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">
|
|
<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>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</xaml:XamlApplication> |