mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-25 10:01:57 +08:00
f839a408de
* Started work * Removed bools in favor of an enum, renamed some * Done something but it still doesn't work * Settings are now correctly saved * I'm getting a crash, I need to rebuild from scratch * Settings page looks alright * Completed work. Unit tests? * Use ComboBox instead * Add telemetry * Update text
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.Styles">
|
|
|
|
<x:Double x:Key="SidePanelWidth">240</x:Double>
|
|
|
|
<!-- Breakpoint for wide layout (side panel next to content) -->
|
|
<x:Double x:Key="WideLayoutMinWidth">720</x:Double>
|
|
|
|
<!-- Breakpoint for small layout (side panel above content) -->
|
|
<x:Double x:Key="SmallLayoutMinWidth">600</x:Double>
|
|
|
|
<!-- Column spacing between content and sidepanel -->
|
|
<x:Double x:Key="DefaultColumnSpacing">24</x:Double>
|
|
|
|
<!-- Row spacing between content and sidepanel (in small mode) -->
|
|
<x:Double x:Key="DefaultRowSpacing">24</x:Double>
|
|
|
|
<!-- MaxWidth of the content panel, similar to W10 Settings -->
|
|
<x:Double x:Key="MaxContentWidth">460</x:Double>
|
|
|
|
<!-- Maximum Width of a combo box inside the content panel -->
|
|
<x:Double x:Key="MaxComboBoxWidth">444</x:Double>
|
|
</ResourceDictionary>
|