mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-11 06:44:09 +08:00
0c02a9acd7
* Leaving out unicode char from automationproperties.name * Colorpicker page accesbility fixes * Fix for toggleswitch * Remove heading level 1 from navview items * Fixes for redunant narrator announcements * Added automationproperties.name to images in oobe * Fix Co-authored-by: Niels Laute <niels9001@hotmail.com>
232 lines
14 KiB
XML
232 lines
14 KiB
XML
<Page
|
|
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:controls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:converters="using:Microsoft.Toolkit.Uwp.UI.Converters"
|
|
xmlns:localConverters="using:Microsoft.PowerToys.Settings.UI.Converters"
|
|
mc:Ignorable="d"
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
|
|
AutomationProperties.LandmarkType="Main">
|
|
|
|
<Page.Resources>
|
|
<converters:BoolToObjectConverter x:Key="BoolToVisibilityConverter" TrueValue="Collapsed" FalseValue="Visible"/>
|
|
<converters:BoolToVisibilityConverter x:Key="VisibleIfTrueConverter"/>
|
|
<localConverters:UpdatingStateUpToDateToVisibilityConverter x:Key="UpdatingStateUpToDateToVisibilityConverter" />
|
|
<localConverters:UpdatingStateCannotDownloadToVisibilityConverter x:Key="UpdatingStateCannotDownloadToVisibilityConverter" />
|
|
<localConverters:UpdatingStateReadyToDownloadToVisibilityConverter x:Key="UpdatingStateReadyToDownloadToVisibilityConverter" />
|
|
<localConverters:UpdatingStateReadyToInstallToVisibilityConverter x:Key="UpdatingStateReadyToInstallToVisibilityConverter" />
|
|
</Page.Resources>
|
|
|
|
<controls:SettingsPageControl x:Uid="About_PowerToys"
|
|
ModuleImageSource="ms-appx:///Assets/Modules/PT.png"
|
|
ModuleImageLink="https://aka.ms/powertoys">
|
|
<controls:SettingsPageControl.ModuleContent>
|
|
<StackPanel Orientation="Vertical">
|
|
<Button Click="OobeButton_Click"
|
|
Style="{StaticResource AccentButtonStyle}"
|
|
Margin="0,12,0,24">
|
|
<Button.Content>
|
|
<StackPanel Orientation="Horizontal">
|
|
<FontIcon FontSize="13" Glyph="" />
|
|
<TextBlock Margin="8,0,0,0"
|
|
x:Uid="Oobe_Button"/>
|
|
</StackPanel>
|
|
</Button.Content>
|
|
</Button>
|
|
|
|
|
|
<TextBlock x:Uid="Admin_Mode"
|
|
FontWeight="SemiBold"
|
|
TextWrapping="Wrap"
|
|
AutomationProperties.HeadingLevel="Level2"
|
|
Style="{StaticResource SubtitleTextBlockStyle}"/>
|
|
|
|
<TextBlock Text="{Binding Mode=TwoWay, Path=RunningAsText}"
|
|
TextWrapping="Wrap"
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
<Button x:Uid="GeneralPage_RestartAsAdmin_Button"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Command = "{Binding RestartElevatedButtonEventHandler}"
|
|
IsEnabled="{Binding Mode=TwoWay, Path=IsAdminButtonEnabled}"
|
|
/>
|
|
|
|
<TextBlock x:Uid="General_RunAsAdminRequired"
|
|
Foreground="{ThemeResource SystemControlErrorTextForegroundBrush}"
|
|
TextWrapping="Wrap"
|
|
Visibility="{Binding Mode=TwoWay, Path=IsElevated, Converter={StaticResource BoolToVisibilityConverter}}"
|
|
Margin="0,24,0,-8" />
|
|
|
|
<ToggleSwitch Margin="{StaticResource SmallTopMargin}"
|
|
x:Uid="GeneralSettings_AlwaysRunAsAdminText"
|
|
IsEnabled="{Binding Mode=TwoWay, Path=IsElevated}"
|
|
IsOn="{Binding Mode=TwoWay, Path=RunElevated}"/>
|
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/powertoysDetectedElevatedHelp">
|
|
<TextBlock x:Uid="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link" TextWrapping="Wrap" />
|
|
</HyperlinkButton>
|
|
|
|
|
|
<TextBlock x:Uid="ShortcutGuide_Appearance_Behavior"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
<!-- Replaced the Radiobuttons parent control with a StackPanel to mitigate the Tab and Arrow key related keyboard navigation issues due to XAML Islands
|
|
Tracking issue in the winui repository - https://github.com/microsoft/microsoft-ui-xaml/issues/3156 -->
|
|
<TextBlock x:Name="RadioButtons_Name_Theme"
|
|
x:Uid="ColorModeHeader"
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
<StackPanel AutomationProperties.LabeledBy="{Binding ElementName=RadioButtons_Name_Theme}">
|
|
<RadioButton x:Uid="Radio_Theme_Dark"
|
|
IsChecked="{ Binding Mode=TwoWay, Path=IsDarkThemeRadioButtonChecked}"/>
|
|
|
|
<RadioButton x:Uid="Radio_Theme_Light"
|
|
IsChecked="{ Binding Mode=TwoWay, Path=IsLightThemeRadioButtonChecked}"/>
|
|
|
|
<RadioButton x:Uid="Radio_Theme_Default"
|
|
IsChecked="{ Binding Mode=TwoWay, Path=IsSystemThemeRadioButtonChecked}"/>
|
|
<HyperlinkButton Click="OpenColorsSettings_Click">
|
|
<TextBlock x:Uid="Windows_Color_Settings" />
|
|
</HyperlinkButton>
|
|
</StackPanel>
|
|
|
|
<ToggleSwitch x:Uid="GeneralPage_ToggleSwitch_RunAtStartUp"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
IsOn="{Binding Mode=TwoWay, Path=Startup}"/>
|
|
|
|
|
|
<TextBlock x:Uid="General_Updates"
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
|
|
|
|
|
|
<StackPanel Visibility="{Binding PowerToysUpdatingState, Converter={StaticResource UpdatingStateUpToDateToVisibilityConverter}}">
|
|
|
|
<TextBlock Margin="{StaticResource SmallTopMargin}" Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}">
|
|
<Run x:Uid="General_Version" />
|
|
<Run Text="{Binding PowerToysVersion}"/>
|
|
</TextBlock>
|
|
|
|
<TextBlock Margin="{StaticResource SmallTopMargin}" Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}">
|
|
<Run x:Uid="General_VersionLastChecked" />
|
|
<Run Text="{Binding UpdateCheckedDate, Mode=OneWay}"/>
|
|
</TextBlock>
|
|
|
|
<TextBlock x:Uid="General_CheckingForUpdates" Margin="{StaticResource SmallTopMargin}" Visibility="{Binding IsNewVersionDownloading, Converter={StaticResource VisibleIfTrueConverter}}"/>
|
|
|
|
<TextBlock x:Uid="General_UpToDate"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"
|
|
Visibility="{Binding IsNewVersionCheckedAndUpToDate, Converter={StaticResource VisibleIfTrueConverter}}"/>
|
|
|
|
<Button x:Uid="GeneralPage_CheckForUpdates"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Command="{Binding CheckForUpdatesEventHandler}"
|
|
IsEnabled="{Binding IsDownloadAllowed}"
|
|
/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Visibility="{Binding PowerToysUpdatingState, Converter={StaticResource UpdatingStateReadyToDownloadToVisibilityConverter}}">
|
|
|
|
<TextBlock Margin="{StaticResource SmallTopMargin}" Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}">
|
|
<Run x:Uid="General_Version" />
|
|
<Run Text="{Binding PowerToysVersion}" />
|
|
</TextBlock>
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
AutomationProperties.LabeledBy="{Binding ElementName=General_Version}">
|
|
<TextBlock x:Name="General_NewVersionAvailable"
|
|
x:Uid="General_NewVersionAvailable"
|
|
FontWeight="SemiBold"
|
|
Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
|
<HyperlinkButton NavigateUri="{Binding PowerToysNewAvailableVersionLink}" Content="{Binding PowerToysNewAvailableVersion}" Margin="4,-6,0,0" IsEnabled="{Binding AutoUpdatesEnabled}"/>
|
|
</StackPanel>
|
|
|
|
<TextBlock x:Name="General_Downloading"
|
|
x:Uid="General_Downloading"
|
|
Visibility="{Binding Mode=OneWay, Path=IsNewVersionDownloading, Converter={StaticResource VisibleIfTrueConverter}}"
|
|
Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
|
|
|
<Button x:Uid="General_DownloadAndInstall"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Command="{Binding UpdateNowButtonEventHandler}"
|
|
IsEnabled="{Binding IsDownloadAllowed}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Visibility="{Binding PowerToysUpdatingState, Converter={StaticResource UpdatingStateReadyToInstallToVisibilityConverter}}">
|
|
<TextBlock Margin="{StaticResource SmallTopMargin}" Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}">
|
|
<Run x:Uid="General_Version" />
|
|
<Run Text="{Binding PowerToysVersion}"/>
|
|
</TextBlock>
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
AutomationProperties.LabeledBy="{Binding ElementName=General_Version}">
|
|
<TextBlock x:Name="General_NewVersionReadyToInstall"
|
|
x:Uid="General_NewVersionReadyToInstall"
|
|
Style="{StaticResource SemiBoldBody}"
|
|
Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
|
<HyperlinkButton NavigateUri="{Binding PowerToysNewAvailableVersionLink}" Content="{Binding PowerToysNewAvailableVersion}" Margin="4,-6,0,0" IsEnabled="{Binding AutoUpdatesEnabled}"/>
|
|
</StackPanel>
|
|
|
|
<Button x:Uid="General_InstallNow"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Command="{Binding UpdateNowButtonEventHandler}"
|
|
IsEnabled="{Binding AutoUpdatesEnabled}"/>
|
|
</StackPanel>
|
|
|
|
<StackPanel Visibility="{Binding PowerToysUpdatingState, Converter={StaticResource UpdatingStateCannotDownloadToVisibilityConverter}}">
|
|
|
|
<TextBlock Margin="{StaticResource SmallTopMargin}" Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}">
|
|
<Run x:Uid="General_Version" />
|
|
<Run Text="{Binding PowerToysVersion}"/>
|
|
</TextBlock>
|
|
|
|
<StackPanel Orientation="Horizontal"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
AutomationProperties.LabeledBy="{Binding ElementName=General_Version}">
|
|
<TextBlock x:Name="General_FailedToDownloadTheNewVersion"
|
|
x:Uid="General_FailedToDownloadTheNewVersion"
|
|
Foreground="{ThemeResource SystemControlErrorTextForegroundBrush}"/>
|
|
<HyperlinkButton NavigateUri="{Binding PowerToysNewAvailableVersionLink}" Content="{Binding PowerToysNewAvailableVersion}" Margin="4,-6,0,0" IsEnabled="{Binding AutoUpdatesEnabled}"/>
|
|
</StackPanel>
|
|
|
|
<TextBlock x:Name="General_Downloading_TryAgain"
|
|
x:Uid="General_Downloading"
|
|
Visibility="{Binding Mode=OneWay, Path=IsNewVersionDownloading, Converter={StaticResource VisibleIfTrueConverter}}"
|
|
Opacity="{Binding AutoUpdatesEnabled, Converter={StaticResource ModuleEnabledToOpacityConverter}}"/>
|
|
|
|
<Button x:Uid="General_TryAgainToDownloadAndInstall"
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
Command="{Binding UpdateNowButtonEventHandler}"
|
|
IsEnabled="{Binding IsDownloadAllowed}"/>
|
|
</StackPanel>
|
|
|
|
|
|
|
|
<ToggleSwitch x:Uid="GeneralPage_ToggleSwitch_AutoDownloadUpdates"
|
|
Margin="{StaticResource MediumTopMargin}"
|
|
Visibility="{Binding Mode=TwoWay, Path=IsAdmin, Converter={StaticResource VisibleIfTrueConverter}}"
|
|
IsOn="{Binding Mode=TwoWay, Path=AutoDownloadUpdates}"
|
|
IsEnabled="{Binding AutoUpdatesEnabled}" />
|
|
</StackPanel>
|
|
</controls:SettingsPageControl.ModuleContent>
|
|
<!--
|
|
<HyperlinkButton Click="OobeButton_Click">
|
|
<TextBlock x:Uid="Oobe_Button"/>
|
|
</HyperlinkButton> -->
|
|
<!-- Side panel -->
|
|
|
|
<controls:SettingsPageControl.ModuleLinks>
|
|
<controls:SidePanelLink x:Uid="General_Repository" Link="https://aka.ms/powertoys"/>
|
|
<controls:SidePanelLink x:Uid="GeneralPage_ReportAbug" Link="https://aka.ms/powerToysReportBug"/>
|
|
<controls:SidePanelLink x:Uid="GeneralPage_RequestAFeature_URL" Link="https://aka.ms/powerToysRequestFeature"/>
|
|
<controls:SidePanelLink x:Uid="GeneralPage_PrivacyStatement_URL" Link="http://go.microsoft.com/fwlink/?LinkId=521839"/>
|
|
<controls:SidePanelLink x:Uid="OpenSource_Notice" Link="https://github.com/microsoft/PowerToys/blob/master/NOTICE.md"/>
|
|
</controls:SettingsPageControl.ModuleLinks>
|
|
</controls:SettingsPageControl>
|
|
</Page> |