[Settings] UI bugfixes (#13260)
* Fixed HyperlinkButton style * Bugfixes to NavView * Update ShellPage.xaml * Replaced Windows 10 with Windows * Updated strings * Tweaks * Reducing gif file sizes * Add InfoBadge * Updated ImageResizer UI * Updated strings * Updated string * Update KBM.gif * Updated icons * Update KeyVisual.xaml Co-authored-by: Niels Laute <niels9001@hotmail.com>
|
Before Width: | Height: | Size: 10 MiB After Width: | Height: | Size: 438 KiB |
|
Before Width: | Height: | Size: 3.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 1.3 MiB After Width: | Height: | Size: 862 KiB |
|
Before Width: | Height: | Size: 5.2 MiB After Width: | Height: | Size: 2.2 MiB |
@@ -25,10 +25,10 @@
|
|||||||
<VisualState x:Name="Normal"/>
|
<VisualState x:Name="Normal"/>
|
||||||
<VisualState x:Name="Disabled">
|
<VisualState x:Name="Disabled">
|
||||||
<VisualState.Setters>
|
<VisualState.Setters>
|
||||||
<!--<Setter Target="ContentHolder.Fill" Value="{ThemeResource AccentButtonBackgroundDisabled}" />
|
<Setter Target="ContentHolder.Fill" Value="{ThemeResource AccentButtonBackgroundDisabled}" />
|
||||||
<Setter Target="KeyPresenter.Foreground" Value="{ThemeResource AccentButtonForegroundDisabled}" />
|
<Setter Target="KeyPresenter.Foreground" Value="{ThemeResource AccentButtonForegroundDisabled}" />
|
||||||
<Setter Target="ContentHolder.Stroke" Value="{ThemeResource AccentButtonBorderBrushDisabled}" />
|
<Setter Target="ContentHolder.Stroke" Value="{ThemeResource AccentButtonBorderBrushDisabled}" />
|
||||||
<Setter Target="ContentHolder.StrokeThickness" Value="{TemplateBinding BorderThickness}" />-->
|
<!--<Setter Target="ContentHolder.StrokeThickness" Value="{TemplateBinding BorderThickness}" />-->
|
||||||
</VisualState.Setters>
|
</VisualState.Setters>
|
||||||
</VisualState>
|
</VisualState>
|
||||||
</VisualStateGroup>
|
</VisualStateGroup>
|
||||||
|
|||||||
@@ -82,11 +82,9 @@
|
|||||||
<Setter Property="TextWrapping" Value="WrapWholeWords"/>
|
<Setter Property="TextWrapping" Value="WrapWholeWords"/>
|
||||||
</Style.Setters>
|
</Style.Setters>
|
||||||
</Style>
|
</Style>
|
||||||
<Style TargetType="HyperlinkButton" BasedOn="{StaticResource TextBlockButtonStyle}">
|
<Style TargetType="HyperlinkButton" BasedOn="{StaticResource TextButtonStyle}">
|
||||||
<Style.Setters>
|
<Style.Setters>
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
||||||
<Setter Property="FontSize" Value="12"/>
|
<Setter Property="FontSize" Value="12"/>
|
||||||
<Setter Property="Margin" Value="0"/>
|
|
||||||
<Setter Property="Padding" Value="0,0,0,0"/>
|
<Setter Property="Padding" Value="0,0,0,0"/>
|
||||||
</Style.Setters>
|
</Style.Setters>
|
||||||
</Style>
|
</Style>
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ using System.Threading.Tasks;
|
|||||||
using Microsoft.UI.Xaml.Controls;
|
using Microsoft.UI.Xaml.Controls;
|
||||||
using Windows.UI.Xaml;
|
using Windows.UI.Xaml;
|
||||||
using Windows.UI.Xaml.Automation;
|
using Windows.UI.Xaml.Automation;
|
||||||
|
using Windows.UI.Xaml.Controls;
|
||||||
|
|
||||||
namespace Microsoft.PowerToys.Settings.UI.Controls
|
namespace Microsoft.PowerToys.Settings.UI.Controls
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,12 +10,6 @@
|
|||||||
|
|
||||||
<UserControl.Resources>
|
<UserControl.Resources>
|
||||||
<converters:DoubleToVisibilityConverter x:Name="doubleToVisibilityConverter" GreaterThan="0" TrueValue="Visible" FalseValue="Collapsed" />
|
<converters:DoubleToVisibilityConverter x:Name="doubleToVisibilityConverter" GreaterThan="0" TrueValue="Visible" FalseValue="Collapsed" />
|
||||||
<Style TargetType="HyperlinkButton" BasedOn="{StaticResource TextBlockButtonStyle}">
|
|
||||||
<Style.Setters>
|
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
||||||
<Setter Property="Margin" Value="0,0,16,0"/>
|
|
||||||
</Style.Setters>
|
|
||||||
</Style>
|
|
||||||
</UserControl.Resources>
|
</UserControl.Resources>
|
||||||
|
|
||||||
<Grid RowSpacing="24" Padding="20,0,0,0">
|
<Grid RowSpacing="24" Padding="20,0,0,0">
|
||||||
@@ -67,14 +61,14 @@
|
|||||||
<ItemsControl ItemsSource="{x:Bind PrimaryLinks}" Margin="0,8,0,0">
|
<ItemsControl ItemsSource="{x:Bind PrimaryLinks}" Margin="0,8,0,0">
|
||||||
<ItemsControl.ItemTemplate>
|
<ItemsControl.ItemTemplate>
|
||||||
<DataTemplate x:DataType="local:PageLink">
|
<DataTemplate x:DataType="local:PageLink">
|
||||||
<HyperlinkButton NavigateUri="{x:Bind Link}">
|
<HyperlinkButton NavigateUri="{x:Bind Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock Text="{x:Bind Text}" TextWrapping="Wrap" />
|
<TextBlock Text="{x:Bind Text}" TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</ItemsControl.ItemTemplate>
|
</ItemsControl.ItemTemplate>
|
||||||
<ItemsControl.ItemsPanel>
|
<ItemsControl.ItemsPanel>
|
||||||
<ItemsPanelTemplate>
|
<ItemsPanelTemplate>
|
||||||
<controls:WrapPanel Orientation="Horizontal" HorizontalSpacing="8"/>
|
<controls:WrapPanel Orientation="Horizontal" HorizontalSpacing="24"/>
|
||||||
</ItemsPanelTemplate>
|
</ItemsPanelTemplate>
|
||||||
</ItemsControl.ItemsPanel>
|
</ItemsControl.ItemsPanel>
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
@@ -103,14 +97,14 @@
|
|||||||
<ItemsControl x:Name="SecondaryLinksItemControl" Margin="2,0,0,0" ItemsSource="{x:Bind SecondaryLinks}">
|
<ItemsControl x:Name="SecondaryLinksItemControl" Margin="2,0,0,0" ItemsSource="{x:Bind SecondaryLinks}">
|
||||||
<ItemsControl.ItemTemplate>
|
<ItemsControl.ItemTemplate>
|
||||||
<DataTemplate x:DataType="local:PageLink">
|
<DataTemplate x:DataType="local:PageLink">
|
||||||
<HyperlinkButton NavigateUri="{x:Bind Link}">
|
<HyperlinkButton NavigateUri="{x:Bind Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock Text="{x:Bind Text}" TextWrapping="Wrap" />
|
<TextBlock Text="{x:Bind Text}" TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
</ItemsControl.ItemTemplate>
|
</ItemsControl.ItemTemplate>
|
||||||
<ItemsControl.ItemsPanel>
|
<ItemsControl.ItemsPanel>
|
||||||
<ItemsPanelTemplate>
|
<ItemsPanelTemplate>
|
||||||
<controls:WrapPanel Orientation="Horizontal" HorizontalSpacing="8"/>
|
<controls:WrapPanel Orientation="Horizontal" HorizontalSpacing="24"/>
|
||||||
</ItemsPanelTemplate>
|
</ItemsPanelTemplate>
|
||||||
</ItemsControl.ItemsPanel>
|
</ItemsControl.ItemsPanel>
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
|
|||||||
@@ -68,26 +68,17 @@
|
|||||||
<ColumnDefinition Width="Auto"/>
|
<ColumnDefinition Width="Auto"/>
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="*" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<!-- To do: replace with InfoBadge once we move towards WinUI 2.7 -->
|
|
||||||
<Grid VerticalAlignment="Center" Margin="2,0,12,0" AutomationProperties.AccessibilityView="Raw">
|
|
||||||
<TextBlock x:Name="IconBackground"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
FontSize="{StaticResource InfoBarIconFontSize}"
|
|
||||||
Text="{StaticResource InfoBarIconBackgroundGlyph}"
|
|
||||||
Foreground="{ThemeResource InfoBarErrorSeverityIconBackground}"
|
|
||||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
|
||||||
AutomationProperties.AccessibilityView="Raw" />
|
|
||||||
|
|
||||||
<TextBlock x:Name="StandardIcon"
|
<muxc:InfoBadge AutomationProperties.AccessibilityView="Raw"
|
||||||
FontSize="{StaticResource InfoBarIconFontSize}"
|
Margin="2,0,12,0"
|
||||||
Text="{StaticResource InfoBarErrorIconGlyph}"
|
Style="{StaticResource CriticalIconInfoBadgeStyle}" />
|
||||||
Foreground="{ThemeResource InfoBarErrorSeverityIconForeground}"
|
|
||||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"/>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
|
|
||||||
<TextBlock x:Name="InvalidShortcutWarningLabel"
|
<TextBlock x:Name="InvalidShortcutWarningLabel"
|
||||||
x:Uid="InvalidShortcut"
|
x:Uid="InvalidShortcut"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
Margin="0,-1,0,0"
|
||||||
Foreground="{ThemeResource InfoBarTitleForeground}"
|
Foreground="{ThemeResource InfoBarTitleForeground}"
|
||||||
FontWeight="{ThemeResource InfoBarTitleFontWeight}"
|
FontWeight="{ThemeResource InfoBarTitleFontWeight}"
|
||||||
Grid.Column="1" />
|
Grid.Column="1" />
|
||||||
|
|||||||
@@ -27,7 +27,8 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}"
|
||||||
|
Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_Awake"
|
<TextBlock x:Uid="LearnMore_Awake"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
<Button x:Uid="Launch_ColorPicker" Style="{StaticResource AccentButtonStyle}" Click="Start_ColorPicker_Click"/>
|
<Button x:Uid="Launch_ColorPicker" Style="{StaticResource AccentButtonStyle}" Click="Start_ColorPicker_Click"/>
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_ColorPicker"
|
<TextBlock x:Uid="LearnMore_ColorPicker"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -29,7 +29,7 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_FancyZones"
|
<TextBlock x:Uid="LearnMore_FancyZones"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_PowerPreview"
|
<TextBlock x:Uid="LearnMore_PowerPreview"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_ImageResizer"
|
<TextBlock x:Uid="LearnMore_ImageResizer"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -25,7 +25,7 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_KBM"
|
<TextBlock x:Uid="LearnMore_KBM"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -15,12 +15,12 @@
|
|||||||
<TextBlock Margin="0,4,0,8"
|
<TextBlock Margin="0,4,0,8"
|
||||||
x:Uid="Oobe_Overview_Description"
|
x:Uid="Oobe_Overview_Description"
|
||||||
TextWrapping="Wrap"/>
|
TextWrapping="Wrap"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.DescriptionLink}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.DescriptionLink}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="Oobe_Overview_DescriptionLinkText"
|
<TextBlock x:Uid="Oobe_Overview_DescriptionLinkText"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="Oobe_Overview_LatestVersionLink"
|
<TextBlock x:Uid="Oobe_Overview_LatestVersionLink"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -26,7 +26,7 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_PowerRename"
|
<TextBlock x:Uid="LearnMore_PowerRename"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -28,7 +28,7 @@
|
|||||||
<Button x:Uid="Launch_Run" Style="{StaticResource AccentButtonStyle}" Click="Start_Run_Click"/>
|
<Button x:Uid="Launch_Run" Style="{StaticResource AccentButtonStyle}" Click="Start_Run_Click"/>
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_Run"
|
<TextBlock x:Uid="LearnMore_Run"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
<Button x:Uid="Launch_ShortcutGuide" Style="{StaticResource AccentButtonStyle}" Click="Start_ShortcutGuide_Click"/>
|
<Button x:Uid="Launch_ShortcutGuide" Style="{StaticResource AccentButtonStyle}" Click="Start_ShortcutGuide_Click"/>
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_ShortcutGuide"
|
<TextBlock x:Uid="LearnMore_ShortcutGuide"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
<StackPanel Orientation="Horizontal" Spacing="12" Margin="0,24,0,0">
|
||||||
<Button x:Uid="OOBE_Settings"
|
<Button x:Uid="OOBE_Settings"
|
||||||
Click="SettingsLaunchButton_Click"/>
|
Click="SettingsLaunchButton_Click"/>
|
||||||
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource HyperlinkButtonStyle}">
|
<HyperlinkButton NavigateUri="{x:Bind ViewModel.Link}" Style="{StaticResource TextButtonStyle}">
|
||||||
<TextBlock x:Uid="LearnMore_VCM"
|
<TextBlock x:Uid="LearnMore_VCM"
|
||||||
TextWrapping="Wrap" />
|
TextWrapping="Wrap" />
|
||||||
</HyperlinkButton>
|
</HyperlinkButton>
|
||||||
|
|||||||
@@ -609,7 +609,7 @@
|
|||||||
<value>Zone inactive color</value>
|
<value>Zone inactive color</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShortcutGuide.ModuleDescription" xml:space="preserve">
|
<data name="ShortcutGuide.ModuleDescription" xml:space="preserve">
|
||||||
<value>Shows a help overlay with Windows shortcuts when the Windows key is pressed.</value>
|
<value>Shows a help overlay with Windows shortcuts.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ShortcutGuide_PressTime.Header" xml:space="preserve">
|
<data name="ShortcutGuide_PressTime.Header" xml:space="preserve">
|
||||||
<value>Press duration before showing (ms)</value>
|
<value>Press duration before showing (ms)</value>
|
||||||
@@ -638,6 +638,15 @@
|
|||||||
<data name="ImageResizer_CustomSizes.Header" xml:space="preserve">
|
<data name="ImageResizer_CustomSizes.Header" xml:space="preserve">
|
||||||
<value>Image sizes</value>
|
<value>Image sizes</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="ImageResizer_Presets.Header" xml:space="preserve">
|
||||||
|
<value>Presets</value>
|
||||||
|
</data>
|
||||||
|
<data name="ImageResizer_Presets.Description" xml:space="preserve">
|
||||||
|
<value>Manage preset sizes that can be used in the editor</value>
|
||||||
|
</data>
|
||||||
|
<data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve">
|
||||||
|
<value>This format is used as the filename for resized images</value>
|
||||||
|
</data>
|
||||||
<data name="ImageResizer.ModuleDescription" xml:space="preserve">
|
<data name="ImageResizer.ModuleDescription" xml:space="preserve">
|
||||||
<value>Lets you resize images by right-clicking.</value>
|
<value>Lets you resize images by right-clicking.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -863,8 +872,11 @@
|
|||||||
<data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve">
|
<data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve">
|
||||||
<value>Filename format</value>
|
<value>Filename format</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve">
|
<data name="ImageResizer_UseOriginalDate.Header" xml:space="preserve">
|
||||||
<value>Use original date modified</value>
|
<value>Use original date modified</value>
|
||||||
|
</data>
|
||||||
|
<data name="ImageResizer_UseOriginalDate.Description" xml:space="preserve">
|
||||||
|
<value>Keep the original modified date of the file (instead of the resize date)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Encoding.Header" xml:space="preserve">
|
<data name="Encoding.Header" xml:space="preserve">
|
||||||
<value>Encoding</value>
|
<value>Encoding</value>
|
||||||
@@ -934,7 +946,7 @@ Made with 💗 by Microsoft and the PowerToys community.</value>
|
|||||||
<value>Example: %1 (%2)</value>
|
<value>Example: %1 (%2)</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ColorModeHeader.Header" xml:space="preserve">
|
<data name="ColorModeHeader.Header" xml:space="preserve">
|
||||||
<value>Choose a mode</value>
|
<value>App theme</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Radio_Theme_Dark.Content" xml:space="preserve">
|
<data name="Radio_Theme_Dark.Content" xml:space="preserve">
|
||||||
<value>Dark</value>
|
<value>Dark</value>
|
||||||
@@ -1096,9 +1108,12 @@ Made with 💗 by Microsoft and the PowerToys community.</value>
|
|||||||
<value>Authored by</value>
|
<value>Authored by</value>
|
||||||
<comment>example: Authored by Microsoft</comment>
|
<comment>example: Authored by Microsoft</comment>
|
||||||
</data>
|
</data>
|
||||||
<data name="PowerLauncher_IncludeInGlobalResult.Content" xml:space="preserve">
|
<data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve">
|
||||||
<value>Include in global result</value>
|
<value>Include in global result</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve">
|
||||||
|
<value>Show results on queries without direct activation command</value>
|
||||||
|
</data>
|
||||||
<data name="PowerLauncher_EnablePluginToggle.AutomationProperties.Name" xml:space="preserve">
|
<data name="PowerLauncher_EnablePluginToggle.AutomationProperties.Name" xml:space="preserve">
|
||||||
<value>Enable plugin</value>
|
<value>Enable plugin</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1192,7 +1207,7 @@ Made with 💗 by Microsoft and the PowerToys community.</value>
|
|||||||
<value>Learn more about</value>
|
<value>Learn more about</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Oobe_ColorPicker_Description" xml:space="preserve">
|
<data name="Oobe_ColorPicker_Description" xml:space="preserve">
|
||||||
<value>Color Picker is a system-wide color selection tool for Windows 10 that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value>
|
<value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Oobe_FancyZones_Description" xml:space="preserve">
|
<data name="Oobe_FancyZones_Description" xml:space="preserve">
|
||||||
<value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value>
|
<value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value>
|
||||||
@@ -1219,7 +1234,7 @@ Made with 💗 by Microsoft and the PowerToys community.</value>
|
|||||||
<value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value>
|
<value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Oobe_Overview_Description.Text" xml:space="preserve">
|
<data name="Oobe_Overview_Description.Text" xml:space="preserve">
|
||||||
<value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows 10 experience for greater productivity.
|
<value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity.
|
||||||
|
|
||||||
Take a moment to preview the various utilities listed or view our comprehensive documentation.</value>
|
Take a moment to preview the various utilities listed or view our comprehensive documentation.</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -1480,7 +1495,7 @@ From there, simply click on a Markdown file, PDF file or SVG icon in the File Ex
|
|||||||
<value>See what's new</value>
|
<value>See what's new</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Awake_Mode.Description" xml:space="preserve">
|
<data name="Awake_Mode.Description" xml:space="preserve">
|
||||||
<value>Set the preferred behaviour or Awake</value>
|
<value>Set the preferred behaviour of Awake</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="ExcludedApps.Header" xml:space="preserve">
|
<data name="ExcludedApps.Header" xml:space="preserve">
|
||||||
<value>Excluded apps</value>
|
<value>Excluded apps</value>
|
||||||
@@ -1603,6 +1618,6 @@ From there, simply click on a Markdown file, PDF file or SVG icon in the File Ex
|
|||||||
<value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value>
|
<value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FancyZones_SpanZonesAcrossMonitorsPrerequisites.Text" xml:space="preserve">
|
<data name="FancyZones_SpanZonesAcrossMonitorsPrerequisites.Text" xml:space="preserve">
|
||||||
<value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors.</value>
|
<value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -12,11 +12,84 @@
|
|||||||
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
|
<Setter Property="HorizontalContentAlignment" Value="Stretch"/>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
<Style x:Key="HyperlinkButtonStyle" TargetType="HyperlinkButton" BasedOn="{StaticResource TextBlockButtonStyle}">
|
<Style x:Key="HyperlinkButtonStyle" TargetType="HyperlinkButton" >
|
||||||
<Style.Setters>
|
</Style>
|
||||||
<Setter Property="FontWeight" Value="SemiBold"/>
|
|
||||||
<Setter Property="Margin" Value="0,0,0,0"/>
|
<Style x:Key="TextButtonStyle" TargetType="ButtonBase">
|
||||||
</Style.Setters>
|
<Setter Property="Background" Value="{ThemeResource HyperlinkButtonBackground}" />
|
||||||
|
<Setter Property="Foreground" Value="{ThemeResource HyperlinkButtonForeground}" />
|
||||||
|
<Setter Property="MinWidth" Value="0" />
|
||||||
|
<Setter Property="MinHeight" Value="0" />
|
||||||
|
<Setter Property="Margin" Value="0" />
|
||||||
|
<Setter Property="UseSystemFocusVisuals" Value="{StaticResource UseSystemFocusVisuals}" />
|
||||||
|
<Setter Property="Template">
|
||||||
|
<Setter.Value>
|
||||||
|
<ControlTemplate TargetType="ButtonBase">
|
||||||
|
<Grid Margin="{TemplateBinding Padding}" CornerRadius="4" Background="{TemplateBinding Background}">
|
||||||
|
<ContentPresenter x:Name="Text"
|
||||||
|
Content="{TemplateBinding Content}"
|
||||||
|
HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
|
||||||
|
FontWeight="SemiBold"
|
||||||
|
VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
|
||||||
|
|
||||||
|
<VisualStateManager.VisualStateGroups>
|
||||||
|
<VisualStateGroup x:Name="CommonStates">
|
||||||
|
<VisualState x:Name="Normal" />
|
||||||
|
|
||||||
|
<VisualState x:Name="PointerOver">
|
||||||
|
|
||||||
|
<Storyboard>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonForegroundPointerOver}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Background">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonBackgroundPointerOver}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="BorderBrush">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonBorderBrushPointerOver}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
</Storyboard>
|
||||||
|
</VisualState>
|
||||||
|
|
||||||
|
<VisualState x:Name="Pressed">
|
||||||
|
|
||||||
|
<Storyboard>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonForegroundPressed}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Background">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonBackgroundPressed}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="BorderBrush">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonBorderBrushPressed}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
</Storyboard>
|
||||||
|
</VisualState>
|
||||||
|
|
||||||
|
<VisualState x:Name="Disabled">
|
||||||
|
|
||||||
|
<Storyboard>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Foreground">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonForegroundDisabled}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="Background">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonBackgroundDisabled}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="Text" Storyboard.TargetProperty="BorderBrush">
|
||||||
|
<DiscreteObjectKeyFrame KeyTime="0" Value="{ThemeResource HyperlinkButtonBorderBrushDisabled}" />
|
||||||
|
</ObjectAnimationUsingKeyFrames>
|
||||||
|
</Storyboard>
|
||||||
|
</VisualState>
|
||||||
|
|
||||||
|
</VisualStateGroup>
|
||||||
|
|
||||||
|
</VisualStateManager.VisualStateGroups>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
</ControlTemplate>
|
||||||
|
</Setter.Value>
|
||||||
|
</Setter>
|
||||||
</Style>
|
</Style>
|
||||||
|
|
||||||
<!-- This style overrides the default style so that all ToggleSwitches are right aligned, with the label on the left -->
|
<!-- This style overrides the default style so that all ToggleSwitches are right aligned, with the label on the left -->
|
||||||
|
|||||||
@@ -44,7 +44,10 @@
|
|||||||
<RadioButton.Content>
|
<RadioButton.Content>
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<TextBlock x:Uid="ColorPickerFirst"/>
|
<TextBlock x:Uid="ColorPickerFirst"/>
|
||||||
<TextBlock x:Uid="ColorPickerFirst_Description" Style="{StaticResource SecondaryTextStyle}"/>
|
<controls:TextBlockControl x:Uid="ColorPickerFirst_Description"
|
||||||
|
FontSize="{StaticResource SecondaryTextFontSize}"
|
||||||
|
EnabledForeground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||||
|
DisabledForeground="{ThemeResource TextFillColorDisabledBrush}"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</RadioButton.Content>
|
</RadioButton.Content>
|
||||||
</RadioButton>
|
</RadioButton>
|
||||||
@@ -53,7 +56,10 @@
|
|||||||
<RadioButton.Content>
|
<RadioButton.Content>
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<TextBlock x:Uid="EditorFirst"/>
|
<TextBlock x:Uid="EditorFirst"/>
|
||||||
<TextBlock x:Uid="EditorFirst_Description" Style="{StaticResource SecondaryTextStyle}"/>
|
<controls:TextBlockControl x:Uid="EditorFirst_Description"
|
||||||
|
FontSize="{StaticResource SecondaryTextFontSize}"
|
||||||
|
EnabledForeground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||||
|
DisabledForeground="{ThemeResource TextFillColorDisabledBrush}"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</RadioButton.Content>
|
</RadioButton.Content>
|
||||||
</RadioButton>
|
</RadioButton>
|
||||||
@@ -62,7 +68,10 @@
|
|||||||
<RadioButton.Content>
|
<RadioButton.Content>
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<TextBlock x:Uid="ColorPickerOnly"/>
|
<TextBlock x:Uid="ColorPickerOnly"/>
|
||||||
<TextBlock x:Uid="ColorPickerOnly_Description" Style="{StaticResource SecondaryTextStyle}"/>
|
<controls:TextBlockControl x:Uid="ColorPickerOnly_Description"
|
||||||
|
FontSize="{StaticResource SecondaryTextFontSize}"
|
||||||
|
EnabledForeground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||||
|
DisabledForeground="{ThemeResource TextFillColorDisabledBrush}"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</RadioButton.Content>
|
</RadioButton.Content>
|
||||||
</RadioButton>
|
</RadioButton>
|
||||||
@@ -72,7 +81,7 @@
|
|||||||
</controls:SettingsGroup>
|
</controls:SettingsGroup>
|
||||||
|
|
||||||
<controls:SettingsGroup x:Uid="ColorFormats" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="ColorFormats" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
<controls:Setting x:Uid="ColorPicker_CopiedColorRepresentation" Icon="">
|
<controls:Setting x:Uid="ColorPicker_CopiedColorRepresentation" Icon="">
|
||||||
<controls:Setting.ActionContent>
|
<controls:Setting.ActionContent>
|
||||||
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}"
|
<ComboBox MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||||
x:Name="ColorPicker_ComboBox"
|
x:Name="ColorPicker_ComboBox"
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
<controls:SettingsGroup x:Uid="FancyZones_Editor_GroupSettings" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="FancyZones_Editor_GroupSettings" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
<Button Style="{StaticResource SettingButtonStyle}" x:Uid="FancyZones_LaunchEditorButton_Accessible" Command="{x:Bind ViewModel.LaunchEditorEventHandler}">
|
<Button Style="{StaticResource SettingButtonStyle}" x:Uid="FancyZones_LaunchEditorButton_Accessible" Command="{x:Bind ViewModel.LaunchEditorEventHandler}">
|
||||||
<controls:Setting x:Uid="FancyZones_LaunchEditorButtonControl" Style="{StaticResource ExpanderHeaderSettingStyle}" Icon="">
|
<controls:Setting x:Uid="FancyZones_LaunchEditorButtonControl" Style="{StaticResource ExpanderHeaderSettingStyle}" Icon="">
|
||||||
<!--<controls:Setting.Icon>
|
<!--<controls:Setting.Icon>
|
||||||
<PathIcon Data="M45,48H25.5V45H45V25.5H25.5v-3H45V3H25.5V0H48V48ZM22.5,48H3V45H22.5V3H3V0H25.5V48ZM0,48V0H3V48Z"/>
|
<PathIcon Data="M45,48H25.5V45H45V25.5H25.5v-3H45V3H25.5V0H48V48ZM22.5,48H3V45H22.5V3H3V0H25.5V48ZM0,48V0H3V48Z"/>
|
||||||
</controls:Setting.Icon>-->
|
</controls:Setting.Icon>-->
|
||||||
@@ -81,15 +81,16 @@
|
|||||||
<CheckBox x:Uid="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.ShowOnAllMonitors}" Margin="{StaticResource ExpanderSettingMargin}" />
|
<CheckBox x:Uid="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl" IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.ShowOnAllMonitors}" Margin="{StaticResource ExpanderSettingMargin}" />
|
||||||
<Rectangle Style="{StaticResource ExpanderSeparatorStyle}" />
|
<Rectangle Style="{StaticResource ExpanderSeparatorStyle}" />
|
||||||
<CheckBox IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.SpanZonesAcrossMonitors}"
|
<CheckBox IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.SpanZonesAcrossMonitors}"
|
||||||
Margin="{StaticResource ExpanderSettingMargin}"
|
Margin="56, 0, 40, 16"
|
||||||
AutomationProperties.Name="{Binding ElementName=SpanZonesAcrossMonitorsPrerequisitesTitle, Path=Text}">
|
AutomationProperties.Name="{Binding ElementName=SpanZonesAcrossMonitorsPrerequisitesTitle, Path=Text}">
|
||||||
<StackPanel Orientation="Vertical">
|
<StackPanel Orientation="Vertical">
|
||||||
<TextBlock x:Name="SpanZonesAcrossMonitorsPrerequisitesTitle" x:Uid="FancyZones_SpanZonesAcrossMonitorsCheckBoxControl" />
|
<TextBlock x:Name="SpanZonesAcrossMonitorsPrerequisitesTitle"
|
||||||
|
Margin="0,10,0,0"
|
||||||
|
x:Uid="FancyZones_SpanZonesAcrossMonitorsCheckBoxControl" />
|
||||||
<controls:TextBlockControl x:Uid="FancyZones_SpanZonesAcrossMonitorsPrerequisites"
|
<controls:TextBlockControl x:Uid="FancyZones_SpanZonesAcrossMonitorsPrerequisites"
|
||||||
FontSize="{StaticResource SecondaryTextFontSize}"
|
FontSize="{StaticResource SecondaryTextFontSize}"
|
||||||
EnabledForeground="{ThemeResource TextFillColorSecondaryBrush}"
|
EnabledForeground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||||
DisabledForeground="{ThemeResource TextFillColorDisabledBrush}"
|
DisabledForeground="{ThemeResource TextFillColorDisabledBrush}"/>
|
||||||
IsEnabled="{Binding ElementName=ZonesSettingsGroup, Path=IsEnabled, Mode=OneWay}"/>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</CheckBox>
|
</CheckBox>
|
||||||
|
|
||||||
@@ -271,7 +272,7 @@
|
|||||||
<controls:SettingsGroup x:Uid="ExcludedApps" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="ExcludedApps" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
<controls:SettingExpander IsExpanded="True">
|
<controls:SettingExpander IsExpanded="True">
|
||||||
<controls:SettingExpander.Header>
|
<controls:SettingExpander.Header>
|
||||||
<controls:Setting x:Uid="FancyZones_ExcludeApps" Icon="" Style="{StaticResource ExpanderHeaderSettingStyle}"/>
|
<controls:Setting x:Uid="FancyZones_ExcludeApps" Icon="" Style="{StaticResource ExpanderHeaderSettingStyle}"/>
|
||||||
</controls:SettingExpander.Header>
|
</controls:SettingExpander.Header>
|
||||||
<controls:SettingExpander.Content>
|
<controls:SettingExpander.Content>
|
||||||
<TextBox x:Uid="FancyZones_ExcludeApps_TextBoxControl"
|
<TextBox x:Uid="FancyZones_ExcludeApps_TextBoxControl"
|
||||||
|
|||||||
@@ -91,7 +91,7 @@
|
|||||||
</muxc:InfoBar.Content>
|
</muxc:InfoBar.Content>
|
||||||
<muxc:InfoBar.ActionButton>
|
<muxc:InfoBar.ActionButton>
|
||||||
<HyperlinkButton x:Uid="SeeWhatsNew"
|
<HyperlinkButton x:Uid="SeeWhatsNew"
|
||||||
Style="{StaticResource HyperlinkButtonStyle}"
|
Style="{StaticResource TextButtonStyle}"
|
||||||
NavigateUri="{Binding PowerToysNewAvailableVersionLink}"
|
NavigateUri="{Binding PowerToysNewAvailableVersionLink}"
|
||||||
HorizontalAlignment="Right" />
|
HorizontalAlignment="Right" />
|
||||||
</muxc:InfoBar.ActionButton>
|
</muxc:InfoBar.ActionButton>
|
||||||
@@ -114,7 +114,7 @@
|
|||||||
</muxc:InfoBar.Content>
|
</muxc:InfoBar.Content>
|
||||||
<muxc:InfoBar.ActionButton>
|
<muxc:InfoBar.ActionButton>
|
||||||
<HyperlinkButton x:Uid="SeeWhatsNew"
|
<HyperlinkButton x:Uid="SeeWhatsNew"
|
||||||
Style="{StaticResource HyperlinkButtonStyle}"
|
Style="{StaticResource TextButtonStyle}"
|
||||||
NavigateUri="{Binding PowerToysNewAvailableVersionLink}"
|
NavigateUri="{Binding PowerToysNewAvailableVersionLink}"
|
||||||
HorizontalAlignment="Right" />
|
HorizontalAlignment="Right" />
|
||||||
</muxc:InfoBar.ActionButton>
|
</muxc:InfoBar.ActionButton>
|
||||||
@@ -152,7 +152,7 @@
|
|||||||
<HyperlinkButton x:Uid="SeeWhatsNew"
|
<HyperlinkButton x:Uid="SeeWhatsNew"
|
||||||
NavigateUri="{Binding PowerToysNewAvailableVersionLink}"
|
NavigateUri="{Binding PowerToysNewAvailableVersionLink}"
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
Style="{StaticResource HyperlinkButtonStyle}"/>
|
Style="{StaticResource TextButtonStyle}"/>
|
||||||
</muxc:InfoBar.ActionButton>
|
</muxc:InfoBar.ActionButton>
|
||||||
</muxc:InfoBar>
|
</muxc:InfoBar>
|
||||||
|
|
||||||
@@ -202,7 +202,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<controls:SettingsGroup IsEnabled="True" x:Uid="ShortcutGuide_Appearance_Behavior">
|
<controls:SettingsGroup IsEnabled="True" x:Uid="ShortcutGuide_Appearance_Behavior">
|
||||||
<controls:Setting x:Uid="ColorModeHeader" Icon="">
|
<controls:Setting x:Uid="ColorModeHeader" Icon="">
|
||||||
<controls:Setting.Description>
|
<controls:Setting.Description>
|
||||||
<HyperlinkButton Click="OpenColorsSettings_Click"
|
<HyperlinkButton Click="OpenColorsSettings_Click"
|
||||||
x:Uid="Windows_Color_Settings"/>
|
x:Uid="Windows_Color_Settings"/>
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<controls:SettingsGroup x:Uid="ImageResizer_CustomSizes" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="ImageResizer_CustomSizes" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
<controls:Setting x:Uid="ImageResizer_CustomSizes" Icon="">
|
<controls:Setting x:Uid="ImageResizer_Presets" Icon="">
|
||||||
<controls:Setting.ActionContent>
|
<controls:Setting.ActionContent>
|
||||||
<Button x:Uid="ImageResizer_AddSizeButton" Click="AddSizeButton_Click" Style="{ThemeResource AccentButtonStyle}" />
|
<Button x:Uid="ImageResizer_AddSizeButton" Click="AddSizeButton_Click" Style="{ThemeResource AccentButtonStyle}" />
|
||||||
</controls:Setting.ActionContent>
|
</controls:Setting.ActionContent>
|
||||||
@@ -218,16 +218,15 @@
|
|||||||
|
|
||||||
|
|
||||||
<controls:SettingsGroup x:Uid="File" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="File" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
<controls:SettingExpander IsExpanded="True">
|
|
||||||
<controls:SettingExpander.Header>
|
<controls:Setting x:Uid="ImageResizer_FilenameFormatHeader">
|
||||||
<controls:Setting x:Uid="ImageResizer_FilenameFormatHeader" Style="{StaticResource ExpanderHeaderSettingStyle}">
|
|
||||||
<controls:Setting.ActionContent>
|
<controls:Setting.ActionContent>
|
||||||
<StackPanel Spacing="4" Orientation="Horizontal">
|
<StackPanel Spacing="4" Orientation="Horizontal">
|
||||||
<TextBox Text="{x:Bind Mode=TwoWay, Path=ViewModel.FileName}"
|
<TextBox Text="{x:Bind Mode=TwoWay, Path=ViewModel.FileName}"
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
MinWidth="{StaticResource SettingActionControlMinWidth}"
|
||||||
x:Uid="ImageResizer_FilenameFormatPlaceholder"/>
|
x:Uid="ImageResizer_FilenameFormatPlaceholder"/>
|
||||||
<Button Content="" FontFamily="{ThemeResource SymbolThemeFontFamily}">
|
<Button Content="" Height="32" FontFamily="{ThemeResource SymbolThemeFontFamily}">
|
||||||
<Button.Flyout>
|
<Button.Flyout>
|
||||||
<Flyout>
|
<Flyout>
|
||||||
<TextBlock x:Name="FileFormatTextBlock">
|
<TextBlock x:Name="FileFormatTextBlock">
|
||||||
@@ -262,21 +261,15 @@
|
|||||||
</Button.Flyout>
|
</Button.Flyout>
|
||||||
</Button>
|
</Button>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
</controls:Setting.ActionContent>
|
</controls:Setting.ActionContent>
|
||||||
|
|
||||||
</controls:Setting>
|
</controls:Setting>
|
||||||
</controls:SettingExpander.Header>
|
|
||||||
<controls:SettingExpander.Content>
|
|
||||||
|
|
||||||
<CheckBox x:Uid="ImageResizer_UseOriginalDate"
|
<controls:Setting x:Uid="ImageResizer_UseOriginalDate">
|
||||||
IsChecked="{x:Bind Mode=TwoWay, Path=ViewModel.KeepDateModified}"
|
<controls:Setting.ActionContent>
|
||||||
Margin="16,8,0,8" />
|
<ToggleSwitch IsOn="{x:Bind Mode=TwoWay, Path=ViewModel.KeepDateModified}" />
|
||||||
</controls:SettingExpander.Content>
|
</controls:Setting.ActionContent>
|
||||||
</controls:SettingExpander>
|
</controls:Setting>
|
||||||
</controls:SettingsGroup>
|
</controls:SettingsGroup>
|
||||||
|
|
||||||
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
||||||
</controls:SettingsPageControl.ModuleContent>
|
</controls:SettingsPageControl.ModuleContent>
|
||||||
|
|||||||
@@ -136,7 +136,7 @@
|
|||||||
</controls:Setting.ActionContent>
|
</controls:Setting.ActionContent>
|
||||||
</controls:Setting>
|
</controls:Setting>
|
||||||
|
|
||||||
<controls:Setting x:Uid="ColorModeHeader" Icon="">
|
<controls:Setting x:Uid="ColorModeHeader" Icon="">
|
||||||
<controls:Setting.Description>
|
<controls:Setting.Description>
|
||||||
<HyperlinkButton Click="OpenColorsSettings_Click"
|
<HyperlinkButton Click="OpenColorsSettings_Click"
|
||||||
x:Uid="Windows_Color_Settings"/>
|
x:Uid="Windows_Color_Settings"/>
|
||||||
@@ -191,24 +191,10 @@
|
|||||||
</controls:Setting.Icon>
|
</controls:Setting.Icon>
|
||||||
<controls:Setting.ActionContent>
|
<controls:Setting.ActionContent>
|
||||||
<StackPanel Orientation="Horizontal" Spacing="16">
|
<StackPanel Orientation="Horizontal" Spacing="16">
|
||||||
<!-- To do: replace with InfoBadge once we move towards WinUI 2.7 -->
|
|
||||||
<Grid VerticalAlignment="Center"
|
|
||||||
AutomationProperties.AccessibilityView="Raw"
|
|
||||||
Visibility="{x:Bind ShowNotAccessibleWarning}">
|
|
||||||
<TextBlock x:Name="IconBackground"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
FontSize="{StaticResource InfoBarIconFontSize}"
|
|
||||||
Text="{StaticResource InfoBarIconBackgroundGlyph}"
|
|
||||||
Foreground="{ThemeResource InfoBarErrorSeverityIconBackground}"
|
|
||||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
|
||||||
AutomationProperties.AccessibilityView="Raw" />
|
|
||||||
|
|
||||||
<TextBlock x:Name="StandardIcon"
|
<muxc:InfoBadge AutomationProperties.AccessibilityView="Raw"
|
||||||
FontSize="{StaticResource InfoBarIconFontSize}"
|
Visibility="{x:Bind ShowNotAccessibleWarning}"
|
||||||
Text="{StaticResource InfoBarErrorIconGlyph}"
|
Style="{StaticResource CriticalIconInfoBadgeStyle}" />
|
||||||
Foreground="{ThemeResource InfoBarErrorSeverityIconForeground}"
|
|
||||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"/>
|
|
||||||
</Grid>
|
|
||||||
|
|
||||||
<ToggleSwitch x:Uid="PowerLauncher_EnablePluginToggle"
|
<ToggleSwitch x:Uid="PowerLauncher_EnablePluginToggle"
|
||||||
IsOn="{x:Bind Path=Disabled, Converter={StaticResource BoolNegationConverter}, Mode=TwoWay}"/>
|
IsOn="{x:Bind Path=Disabled, Converter={StaticResource BoolNegationConverter}, Mode=TwoWay}"/>
|
||||||
@@ -233,10 +219,21 @@
|
|||||||
IsOpen="{x:Bind ShowNotAllowedKeywordWarning}"
|
IsOpen="{x:Bind ShowNotAllowedKeywordWarning}"
|
||||||
IsClosable="False" />
|
IsClosable="False" />
|
||||||
<Rectangle Style="{StaticResource ExpanderSeparatorStyle}" />
|
<Rectangle Style="{StaticResource ExpanderSeparatorStyle}" />
|
||||||
<CheckBox x:Uid="PowerLauncher_IncludeInGlobalResult"
|
<CheckBox
|
||||||
|
AutomationProperties.Name="{Binding ElementName=IncludeInGlobalResultTitle, Path=Text}"
|
||||||
IsChecked="{x:Bind Path=IsGlobal, Mode=TwoWay}"
|
IsChecked="{x:Bind Path=IsGlobal, Mode=TwoWay}"
|
||||||
IsEnabled="{x:Bind Enabled, Mode=OneWay}"
|
IsEnabled="{x:Bind Enabled, Mode=OneWay}"
|
||||||
Margin="{StaticResource ExpanderSettingMargin}"/>
|
Margin="56, 0, 40, 16">
|
||||||
|
<StackPanel Orientation="Vertical">
|
||||||
|
<TextBlock x:Name="IncludeInGlobalResultTitle"
|
||||||
|
Margin="0,10,0,0"
|
||||||
|
x:Uid="PowerLauncher_IncludeInGlobalResultTitle" />
|
||||||
|
<controls:TextBlockControl x:Uid="PowerLauncher_IncludeInGlobalResultDescription"
|
||||||
|
FontSize="{StaticResource SecondaryTextFontSize}"
|
||||||
|
EnabledForeground="{ThemeResource TextFillColorSecondaryBrush}"
|
||||||
|
DisabledForeground="{ThemeResource TextFillColorDisabledBrush}" />
|
||||||
|
</StackPanel>
|
||||||
|
</CheckBox>
|
||||||
|
|
||||||
<ListView ItemsSource="{x:Bind Path=AdditionalOptions}"
|
<ListView ItemsSource="{x:Bind Path=AdditionalOptions}"
|
||||||
SelectionMode="None"
|
SelectionMode="None"
|
||||||
|
|||||||
@@ -27,7 +27,6 @@
|
|||||||
IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}"
|
IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}"
|
||||||
SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}"
|
SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}"
|
||||||
IsSettingsVisible="False"
|
IsSettingsVisible="False"
|
||||||
OpenPaneLength="288"
|
|
||||||
CompactModeThresholdWidth="1007"
|
CompactModeThresholdWidth="1007"
|
||||||
ExpandedModeThresholdWidth="1007"
|
ExpandedModeThresholdWidth="1007"
|
||||||
PaneOpened="NavigationView_PaneOpened"
|
PaneOpened="NavigationView_PaneOpened"
|
||||||
@@ -41,8 +40,7 @@
|
|||||||
</muxc:NavigationView.Resources>
|
</muxc:NavigationView.Resources>
|
||||||
<muxc:NavigationView.MenuItems>
|
<muxc:NavigationView.MenuItems>
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_General"
|
<muxc:NavigationViewItem x:Uid="Shell_General"
|
||||||
helpers:NavHelper.NavigateTo="views:GeneralPage"
|
helpers:NavHelper.NavigateTo="views:GeneralPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsSettings.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsSettings.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -50,8 +48,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_Awake"
|
<muxc:NavigationViewItem x:Uid="Shell_Awake"
|
||||||
helpers:NavHelper.NavigateTo="views:AwakePage"
|
helpers:NavHelper.NavigateTo="views:AwakePage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsAwake.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsAwake.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -59,8 +56,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_ColorPicker"
|
<muxc:NavigationViewItem x:Uid="Shell_ColorPicker"
|
||||||
helpers:NavHelper.NavigateTo="views:ColorPickerPage"
|
helpers:NavHelper.NavigateTo="views:ColorPickerPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsColorPicker.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsColorPicker.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -68,8 +64,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_FancyZones"
|
<muxc:NavigationViewItem x:Uid="Shell_FancyZones"
|
||||||
helpers:NavHelper.NavigateTo="views:FancyZonesPage"
|
helpers:NavHelper.NavigateTo="views:FancyZonesPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsFancyZones.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsFancyZones.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -77,8 +72,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_PowerPreview"
|
<muxc:NavigationViewItem x:Uid="Shell_PowerPreview"
|
||||||
helpers:NavHelper.NavigateTo="views:PowerPreviewPage"
|
helpers:NavHelper.NavigateTo="views:PowerPreviewPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsFileExplorerPreview.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsFileExplorerPreview.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -86,8 +80,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_ImageResizer"
|
<muxc:NavigationViewItem x:Uid="Shell_ImageResizer"
|
||||||
helpers:NavHelper.NavigateTo="views:ImageResizerPage"
|
helpers:NavHelper.NavigateTo="views:ImageResizerPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsImageResizer.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsImageResizer.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -95,8 +88,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_KeyboardManager"
|
<muxc:NavigationViewItem x:Uid="Shell_KeyboardManager"
|
||||||
helpers:NavHelper.NavigateTo="views:KeyboardManagerPage"
|
helpers:NavHelper.NavigateTo="views:KeyboardManagerPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsKeyboardManager.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsKeyboardManager.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -104,8 +96,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_PowerRename"
|
<muxc:NavigationViewItem x:Uid="Shell_PowerRename"
|
||||||
helpers:NavHelper.NavigateTo="views:PowerRenamePage"
|
helpers:NavHelper.NavigateTo="views:PowerRenamePage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerRename.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerRename.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -113,8 +104,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_PowerLauncher"
|
<muxc:NavigationViewItem x:Uid="Shell_PowerLauncher"
|
||||||
helpers:NavHelper.NavigateTo="views:PowerLauncherPage"
|
helpers:NavHelper.NavigateTo="views:PowerLauncherPage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerToysRun.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsPowerToysRun.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -122,8 +112,7 @@
|
|||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
|
|
||||||
<muxc:NavigationViewItem x:Uid="Shell_ShortcutGuide"
|
<muxc:NavigationViewItem x:Uid="Shell_ShortcutGuide"
|
||||||
helpers:NavHelper.NavigateTo="views:ShortcutGuidePage"
|
helpers:NavHelper.NavigateTo="views:ShortcutGuidePage">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsShortcutGuide.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsShortcutGuide.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -133,8 +122,7 @@
|
|||||||
<!--TODO(yuyoyuppe): uncomment when VCM should be enabled-->
|
<!--TODO(yuyoyuppe): uncomment when VCM should be enabled-->
|
||||||
<!--<muxc:NavigationViewItem x:Uid="Shell_VideoConference"
|
<!--<muxc:NavigationViewItem x:Uid="Shell_VideoConference"
|
||||||
helpers:NavHelper.NavigateTo="views:VideoConferencePage"
|
helpers:NavHelper.NavigateTo="views:VideoConferencePage"
|
||||||
IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}"
|
IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsVideoConferenceMute.png"
|
<BitmapIcon UriSource="ms-appx:///Assets/FluentIcons/FluentIconsVideoConferenceMute.png"
|
||||||
ShowAsMonochrome="False" />
|
ShowAsMonochrome="False" />
|
||||||
@@ -145,15 +133,13 @@
|
|||||||
<muxc:NavigationView.PaneFooter>
|
<muxc:NavigationView.PaneFooter>
|
||||||
<StackPanel Orientation="Vertical">
|
<StackPanel Orientation="Vertical">
|
||||||
<muxc:NavigationViewItem x:Uid="OOBE_NavViewItem"
|
<muxc:NavigationViewItem x:Uid="OOBE_NavViewItem"
|
||||||
Tapped="OOBEItem_Tapped"
|
Tapped="OOBEItem_Tapped">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<FontIcon Glyph=""/>
|
<FontIcon Glyph=""/>
|
||||||
</muxc:NavigationViewItem.Icon>
|
</muxc:NavigationViewItem.Icon>
|
||||||
</muxc:NavigationViewItem>
|
</muxc:NavigationViewItem>
|
||||||
<muxc:NavigationViewItem x:Uid="Feedback_NavViewItem"
|
<muxc:NavigationViewItem x:Uid="Feedback_NavViewItem"
|
||||||
Tapped="FeedbackItem_Tapped"
|
Tapped="FeedbackItem_Tapped">
|
||||||
Margin="0,0,12,0">
|
|
||||||
<muxc:NavigationViewItem.Icon>
|
<muxc:NavigationViewItem.Icon>
|
||||||
<FontIcon Glyph=""/>
|
<FontIcon Glyph=""/>
|
||||||
</muxc:NavigationViewItem.Icon>
|
</muxc:NavigationViewItem.Icon>
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
<controls:SettingsGroup x:Uid="ShortcutGuide_Appearance_Behavior" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="ShortcutGuide_Appearance_Behavior" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
|
|
||||||
<controls:Setting x:Uid="ColorModeHeader" Icon="">
|
<controls:Setting x:Uid="ColorModeHeader" Icon="">
|
||||||
<controls:Setting.Description>
|
<controls:Setting.Description>
|
||||||
<HyperlinkButton Click="OpenColorsSettings_Click"
|
<HyperlinkButton Click="OpenColorsSettings_Click"
|
||||||
x:Uid="Windows_Color_Settings"/>
|
x:Uid="Windows_Color_Settings"/>
|
||||||
@@ -67,7 +67,7 @@
|
|||||||
<controls:SettingsGroup x:Uid="ExcludedApps" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
<controls:SettingsGroup x:Uid="ExcludedApps" IsEnabled="{x:Bind Mode=OneWay, Path=ViewModel.IsEnabled}">
|
||||||
<controls:SettingExpander IsExpanded="True">
|
<controls:SettingExpander IsExpanded="True">
|
||||||
<controls:SettingExpander.Header>
|
<controls:SettingExpander.Header>
|
||||||
<controls:Setting x:Uid="ShortcutGuide_DisabledApps" Icon="" Style="{StaticResource ExpanderHeaderSettingStyle}"/>
|
<controls:Setting x:Uid="ShortcutGuide_DisabledApps" Icon="" Style="{StaticResource ExpanderHeaderSettingStyle}"/>
|
||||||
</controls:SettingExpander.Header>
|
</controls:SettingExpander.Header>
|
||||||
<controls:SettingExpander.Content>
|
<controls:SettingExpander.Content>
|
||||||
<TextBox x:Uid="ShortcutGuide_DisabledApps_TextBoxControl"
|
<TextBox x:Uid="ShortcutGuide_DisabledApps_TextBoxControl"
|
||||||
|
|||||||