mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
182 lines
9.5 KiB
XML
182 lines
9.5 KiB
XML
<Page
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.EspressoPage"
|
|
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.Views"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
|
|
xmlns:c="using:Microsoft.PowerToys.Settings.UI.Converters"
|
|
xmlns:Custom="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
xmlns:Color="using:Microsoft.PowerToys.Settings.UI.Library.ViewModels" xmlns:Interactivity="using:Microsoft.Xaml.Interactivity" xmlns:Core="using:Microsoft.Xaml.Interactions.Core"
|
|
mc:Ignorable="d"
|
|
d:DesignHeight="300"
|
|
d:DesignWidth="400"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
|
AutomationProperties.LandmarkType="Main">
|
|
|
|
<Page.Resources>
|
|
<c:EspressoModeToBoolConverter x:Key="EspressoModeToBoolConverter" />
|
|
<c:EspressoModeToReverseBoolConverter x:Key="EspressoModeToReverseBoolConverter" />
|
|
</Page.Resources>
|
|
|
|
<Grid RowSpacing="{StaticResource DefaultRowSpacing}">
|
|
<VisualStateManager.VisualStateGroups>
|
|
<VisualStateGroup x:Name="LayoutVisualStates">
|
|
<VisualState x:Name="WideLayout">
|
|
<VisualState.StateTriggers>
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource WideLayoutMinWidth}" />
|
|
</VisualState.StateTriggers>
|
|
</VisualState>
|
|
<VisualState x:Name="SmallLayout">
|
|
<VisualState.StateTriggers>
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource SmallLayoutMinWidth}" />
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
|
</VisualState.StateTriggers>
|
|
<VisualState.Setters>
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0" />
|
|
<Setter Target="SidePanel.Width" Value="Auto" />
|
|
<Setter Target="ColorPickerView.(Grid.Row)" Value="1" />
|
|
<Setter Target="ColorPickerView.Margin" Value="0" />
|
|
<Setter Target="LinksPanel.(RelativePanel.RightOf)" Value="AboutImage" />
|
|
<Setter Target="LinksPanel.(RelativePanel.AlignTopWith)" Value="AboutImage" />
|
|
<Setter Target="AboutImage.Margin" Value="0,12,12,0" />
|
|
<Setter Target="AboutTitle.Visibility" Value="Collapsed" />
|
|
</VisualState.Setters>
|
|
</VisualState>
|
|
</VisualStateGroup>
|
|
</VisualStateManager.VisualStateGroups>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Orientation="Vertical"
|
|
x:Name="EspressoView"
|
|
HorizontalAlignment="Left"
|
|
Margin="0,0,48,0"
|
|
MaxWidth="{StaticResource MaxContentWidth}">
|
|
<ToggleSwitch x:Uid="Espresso_EnableEspresso" IsOn="{Binding IsEnabled, Mode=TwoWay}" />
|
|
<!--IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.EnablePowerLauncher}"/>-->
|
|
|
|
<!--<TextBlock x:Uid="Shortcuts"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.EnablePowerLauncher, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>-->
|
|
|
|
<TextBlock x:Uid="Espresso_Behavior_GroupSettings"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
<ToggleSwitch x:Uid="Espresso_EnableDisplayKeepAwake"
|
|
IsEnabled="{Binding IsEnabled}"
|
|
IsOn="{Binding KeepDisplayOn, Mode=TwoWay}" />
|
|
<!--Foreground="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"-->
|
|
|
|
<StackPanel Margin="{StaticResource MediumTopMargin}">
|
|
<RadioButton x:Uid="Espresso_IndefiniteKeepAwake"
|
|
IsEnabled="{Binding IsEnabled}"
|
|
IsChecked="{Binding Mode, Mode=TwoWay, Converter={StaticResource EspressoModeToBoolConverter}}">
|
|
<RadioButton.Content>
|
|
<TextBlock TextWrapping="WrapWholeWords" LineHeight="20">
|
|
<Run x:Uid="Espresso_IndefiniteKeepAwakeContent"/>
|
|
<LineBreak/>
|
|
<Run Foreground="{ThemeResource SystemBaseMediumColor}"
|
|
x:Uid="Espresso_IndefiniteKeepAwakeDescription"/>
|
|
</TextBlock>
|
|
</RadioButton.Content>
|
|
</RadioButton>
|
|
<RadioButton x:Uid="Espresso_TemporaryKeepAwake"
|
|
IsEnabled="{Binding IsEnabled}"
|
|
IsChecked="{Binding Mode, Mode=TwoWay, Converter={StaticResource EspressoModeToReverseBoolConverter}}">
|
|
<RadioButton.Content>
|
|
<TextBlock TextWrapping="WrapWholeWords" LineHeight="20">
|
|
<Run x:Uid="Espresso_TemporaryKeepAwakeContent"/>
|
|
<LineBreak/>
|
|
<Run Foreground="{ThemeResource SystemBaseMediumColor}"
|
|
x:Uid="Espresso_TemporaryKeepAwakeDescription"/>
|
|
</TextBlock>
|
|
</RadioButton.Content>
|
|
</RadioButton>
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
<muxc:NumberBox x:Uid="Espresso_TemporaryKeepAwake_Hours"
|
|
Value="{Binding Hours, Mode=TwoWay}"
|
|
Minimum="0"
|
|
SpinButtonPlacementMode="Compact"
|
|
HorizontalAlignment="Left"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
MinWidth="90"
|
|
IsEnabled="{Binding Mode, Converter={StaticResource EspressoModeToReverseBoolConverter}}"
|
|
SmallChange="1"
|
|
LargeChange="5"/>
|
|
<muxc:NumberBox x:Uid="Espresso_TemporaryKeepAwake_Minutes"
|
|
Value="{Binding Minutes, Mode=TwoWay}"
|
|
Minimum="0"
|
|
SpinButtonPlacementMode="Compact"
|
|
HorizontalAlignment="Left"
|
|
Margin="{StaticResource SmallLeftTopRightBottomMargin}"
|
|
MinWidth="90"
|
|
IsEnabled="{Binding Mode, Converter={StaticResource EspressoModeToReverseBoolConverter}}"
|
|
SmallChange="1"
|
|
LargeChange="5"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
|
|
<RelativePanel x:Name="SidePanel"
|
|
HorizontalAlignment="Left"
|
|
Width="{StaticResource SidePanelWidth}"
|
|
Grid.Column="1">
|
|
<StackPanel x:Name="DescriptionPanel">
|
|
<TextBlock x:Uid="About_Espresso"
|
|
x:Name="AboutTitle"
|
|
Grid.ColumnSpan="2"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
|
<TextBlock x:Uid="Espresso_Description"
|
|
TextWrapping="Wrap"
|
|
Grid.Row="1" />
|
|
</StackPanel>
|
|
|
|
<Border x:Name="AboutImage"
|
|
CornerRadius="4"
|
|
Grid.Row="2"
|
|
MaxWidth="240"
|
|
HorizontalAlignment="Left"
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
|
RelativePanel.Below="DescriptionPanel">
|
|
<HyperlinkButton x:Uid="Espresso_ImageHyperlinkToDocs">
|
|
<Image x:Uid="Espresso_Image" Source="ms-appx:///Assets/Modules/ColorPicker.png" />
|
|
</HyperlinkButton>
|
|
</Border>
|
|
<StackPanel x:Name="LinksPanel"
|
|
Margin="0,1,0,0"
|
|
RelativePanel.Below="AboutImage"
|
|
Orientation="Vertical" >
|
|
<HyperlinkButton x:Uid="Espresso_ImageHyperlinkToDocs">
|
|
<TextBlock x:Uid="Module_overview" />
|
|
</HyperlinkButton>
|
|
<HyperlinkButton NavigateUri="https://aka.ms/powerToysGiveFeedback">
|
|
<TextBlock x:Uid="Give_Feedback" />
|
|
</HyperlinkButton>
|
|
|
|
<TextBlock
|
|
x:Uid="AttributionTitle"
|
|
Style="{StaticResource SettingsGroupTitleStyle}" />
|
|
|
|
<HyperlinkButton Margin="0,-3,0,0"
|
|
x:Uid="Espresso_ModuleAttributionHyperlink">
|
|
<TextBlock x:Uid="Espresso_ModuleAttributionLabel" TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
|
|
<HyperlinkButton Margin="0,-3,0,0"
|
|
x:Uid="Espresso_UXAttributionHyperlink">
|
|
<TextBlock x:Uid="Espresso_UXAttributionLabel" TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
|
|
</StackPanel>
|
|
</RelativePanel>
|
|
</Grid>
|
|
</Page> |