2020-04-18 06:25:08 +08:00
|
|
|
<Page
|
2020-03-12 14:25:24 +08:00
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.GeneralPage"
|
|
|
|
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"
|
2020-04-18 06:25:08 +08:00
|
|
|
xmlns:viewModel="using:Microsoft.PowerToys.Settings.UI.ViewModels"
|
2020-03-12 14:25:24 +08:00
|
|
|
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"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
<Page.Resources>
|
|
|
|
<viewModel:GeneralViewModel x:Key="eventViewModel"/>
|
|
|
|
</Page.Resources>
|
|
|
|
|
|
|
|
|
2020-03-31 20:32:22 +08:00
|
|
|
<Grid ColumnSpacing="{StaticResource DefaultColumnSpacing}" RowSpacing="{StaticResource DefaultRowSpacing}">
|
|
|
|
<VisualStateManager.VisualStateGroups>
|
|
|
|
<VisualStateGroup x:Name="LayoutVisualStates">
|
|
|
|
<VisualState x:Name="WideLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource WideLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="1" />
|
|
|
|
<Setter Target="SidePanel.(Grid.Row)" Value="0" />
|
|
|
|
</VisualState.Setters>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="SmallLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource SmallLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0" />
|
|
|
|
<Setter Target="SidePanel.(Grid.Row)" Value="1" />
|
|
|
|
</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>
|
2020-03-12 14:25:24 +08:00
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
<StackPanel Orientation="Vertical"
|
|
|
|
x:Name="GeneralSettingsView">
|
|
|
|
|
|
|
|
<ToggleSwitch x:Uid="GeneralPage_ToggleSwitch_RunAtStartUp"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
2020-05-03 18:17:06 +08:00
|
|
|
IsOn="{Binding Mode=TwoWay, Path=Startup, Source={StaticResource eventViewModel}}"/>
|
|
|
|
|
|
|
|
<ToggleSwitch x:Uid="GeneralPage_ToggleSwitch_AutoDownloadUpdates"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
IsOn="{Binding Mode=TwoWay, Path=AutoDownloadUpdates, Source={StaticResource eventViewModel}}"/>
|
2020-03-12 14:25:24 +08:00
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
<muxc:RadioButtons x:Uid="RadioButtons_Name_Theme" Margin="{StaticResource SmallTopMargin}">
|
|
|
|
<RadioButton x:Uid="GeneralPage_Radio_Theme_Dark"
|
|
|
|
Content="Dark"
|
2020-05-03 18:17:06 +08:00
|
|
|
IsChecked="{ Binding Mode=TwoWay, Path=IsDarkThemeRadioButtonChecked, Source={StaticResource eventViewModel}}"/>
|
2020-04-18 06:25:08 +08:00
|
|
|
|
|
|
|
<RadioButton x:Uid="GeneralPage_Radio_Theme_Light"
|
|
|
|
Content="Light"
|
2020-05-03 18:17:06 +08:00
|
|
|
IsChecked="{ Binding Mode=TwoWay, Path=IsLightThemeRadioButtonChecked, Source={StaticResource eventViewModel}}"/>
|
2020-04-18 06:25:08 +08:00
|
|
|
|
|
|
|
<RadioButton x:Uid="GeneralPage_Radio_Theme_Default"
|
|
|
|
Content="System default"
|
2020-05-03 18:17:06 +08:00
|
|
|
IsChecked="{ Binding Mode=TwoWay, Path=IsSystemThemeRadioButtonChecked, Source={StaticResource eventViewModel}}"/>
|
2020-03-31 20:32:22 +08:00
|
|
|
</muxc:RadioButtons>
|
2020-03-12 14:25:24 +08:00
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
<Button x:Uid="GeneralPage_RestartAsAdmin_Button"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Style="{StaticResource AccentButtonStyle}"
|
|
|
|
Command = "{Binding RestartElevatedButtonEventHandler, Source={StaticResource eventViewModel}}"
|
|
|
|
/>
|
2020-03-31 20:32:22 +08:00
|
|
|
</StackPanel>
|
2020-03-12 14:25:24 +08:00
|
|
|
|
2020-04-18 06:25:08 +08:00
|
|
|
<StackPanel x:Name="SidePanel"
|
|
|
|
Orientation="Vertical"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="{StaticResource SidePanelWidth}"
|
|
|
|
Grid.Column="1">
|
|
|
|
|
|
|
|
<TextBlock x:Uid="GeneralPage_AboutPowerToysHeader"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
|
|
|
|
|
|
|
<TextBlock Text="Version 0.15.2"
|
|
|
|
FontWeight="Bold"
|
|
|
|
Margin="{StaticResource SmallTopMargin}" />
|
|
|
|
|
|
|
|
<Button x:Uid="GeneralPage_CheckForUpdates"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Style="{StaticResource AccentButtonStyle}"
|
|
|
|
Foreground="White"
|
|
|
|
Command = "{Binding CheckFoUpdatesEventHandler, Source={StaticResource eventViewModel}}"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<HyperlinkButton x:Uid="GeneralPage_ReportAbug"
|
|
|
|
NavigateUri="https://github.com/microsoft/PowerToys/issues"
|
|
|
|
Margin="{StaticResource SmallTopMargin}" />
|
|
|
|
|
|
|
|
<HyperlinkButton x:Uid="GeneralPage_RequestAFeature_URL"
|
|
|
|
NavigateUri="https://github.com/microsoft/PowerToys/issues"/>
|
|
|
|
|
|
|
|
<HyperlinkButton x:Uid="GeneralPage_PrivacyStatement_URL"
|
|
|
|
NavigateUri=" http://go.microsoft.com/fwlink/?LinkId=521839" />
|
|
|
|
|
|
|
|
<HyperlinkButton x:Uid="OpenSource_Notice"
|
2020-05-03 18:17:06 +08:00
|
|
|
NavigateUri="https://github.com/microsoft/PowerToys/blob/master/NOTICE.md"/>
|
|
|
|
|
|
|
|
<HyperlinkButton x:Uid="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link"
|
|
|
|
NavigateUri="https://github.com/microsoft/PowerToys/blob/master/doc/devdocs/run-as-admin-detection.md"/>
|
2020-03-31 20:32:22 +08:00
|
|
|
</StackPanel>
|
2020-03-12 14:25:24 +08:00
|
|
|
</Grid>
|
|
|
|
</Page>
|