mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 09:46:54 +02:00
[cmdpal] UX tweaks (#38087)
- Removing the redundant icon + text in the bottom left corner - Minor styling tweaks - Adding subtle show/hide animations - Improved narrator support for Settings button - Minor design tweaks to the tags for better visibility (still needs more work in the future) 
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
x:Class="Microsoft.CmdPal.UI.Controls.CommandBar"
|
x:Class="Microsoft.CmdPal.UI.Controls.CommandBar"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:animations="using:CommunityToolkit.WinUI.Animations"
|
||||||
xmlns:cmdpalUI="using:Microsoft.CmdPal.UI"
|
xmlns:cmdpalUI="using:Microsoft.CmdPal.UI"
|
||||||
xmlns:converters="using:CommunityToolkit.WinUI.Converters"
|
xmlns:converters="using:CommunityToolkit.WinUI.Converters"
|
||||||
xmlns:cpcontrols="using:Microsoft.CmdPal.UI.Controls"
|
xmlns:cpcontrols="using:Microsoft.CmdPal.UI.Controls"
|
||||||
@@ -62,6 +63,27 @@
|
|||||||
Text="{x:Bind RequestedShortcut, Mode=OneWay, Converter={StaticResource KeyChordToStringConverter}}" />
|
Text="{x:Bind RequestedShortcut, Mode=OneWay, Converter={StaticResource KeyChordToStringConverter}}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
</DataTemplate>
|
</DataTemplate>
|
||||||
|
|
||||||
|
<animations:ImplicitAnimationSet x:Name="ShowAnimations">
|
||||||
|
<animations:OpacityAnimation
|
||||||
|
From="0"
|
||||||
|
To="1.0"
|
||||||
|
Duration="0:0:0.340" />
|
||||||
|
<animations:ScaleAnimation
|
||||||
|
From="0.85"
|
||||||
|
To="1"
|
||||||
|
Duration="0:0:0.350" />
|
||||||
|
</animations:ImplicitAnimationSet>
|
||||||
|
<animations:ImplicitAnimationSet x:Name="HideAnimations">
|
||||||
|
<animations:OpacityAnimation
|
||||||
|
From="1.0"
|
||||||
|
To="0"
|
||||||
|
Duration="0:0:0.240" />
|
||||||
|
<animations:ScaleAnimation
|
||||||
|
From="1"
|
||||||
|
To="0.85"
|
||||||
|
Duration="0:0:0.350" />
|
||||||
|
</animations:ImplicitAnimationSet>
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
</UserControl.Resources>
|
</UserControl.Resources>
|
||||||
|
|
||||||
@@ -80,15 +102,6 @@
|
|||||||
Margin="8,0,0,0"
|
Margin="8,0,0,0"
|
||||||
Tapped="PageIcon_Tapped"
|
Tapped="PageIcon_Tapped"
|
||||||
Visibility="{x:Bind CurrentPageViewModel.IsNested, Mode=OneWay}">
|
Visibility="{x:Bind CurrentPageViewModel.IsNested, Mode=OneWay}">
|
||||||
|
|
||||||
<cpcontrols:IconBox
|
|
||||||
x:Name="IconBorder"
|
|
||||||
Width="16"
|
|
||||||
Height="16"
|
|
||||||
x:Load="{x:Bind IsLoaded, Mode=OneWay}"
|
|
||||||
CornerRadius="{StaticResource ControlCornerRadius}"
|
|
||||||
SourceKey="{x:Bind CurrentPageViewModel.Icon, Mode=OneWay}"
|
|
||||||
SourceRequested="{x:Bind help:IconCacheProvider.SourceRequested}" />
|
|
||||||
<InfoBadge Visibility="{x:Bind CurrentPageViewModel.HasStatusMessage, Mode=OneWay}" Value="{x:Bind CurrentPageViewModel.StatusMessages.Count, Mode=OneWay}" />
|
<InfoBadge Visibility="{x:Bind CurrentPageViewModel.HasStatusMessage, Mode=OneWay}" Value="{x:Bind CurrentPageViewModel.StatusMessages.Count, Mode=OneWay}" />
|
||||||
<Grid.ContextFlyout>
|
<Grid.ContextFlyout>
|
||||||
<Flyout x:Name="StatusMessagesFlyout" Placement="TopEdgeAlignedLeft">
|
<Flyout x:Name="StatusMessagesFlyout" Placement="TopEdgeAlignedLeft">
|
||||||
@@ -121,14 +134,15 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
<Button
|
<Button
|
||||||
x:Name="SettingsIconButton"
|
x:Name="SettingsIconButton"
|
||||||
Margin="0,0,0,0"
|
x:Uid="SettingsButton"
|
||||||
|
animations:Implicit.HideAnimations="{StaticResource HideAnimations}"
|
||||||
|
animations:Implicit.ShowAnimations="{StaticResource ShowAnimations}"
|
||||||
|
ui:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
|
||||||
Style="{StaticResource SubtleButtonStyle}"
|
Style="{StaticResource SubtleButtonStyle}"
|
||||||
Tapped="SettingsIcon_Tapped"
|
Tapped="SettingsIcon_Tapped"
|
||||||
Visibility="{x:Bind CurrentPageViewModel.IsNested, Mode=OneWay, Converter={StaticResource BoolToInvertedVisibilityConverter}}">
|
Visibility="{x:Bind CurrentPageViewModel.IsNested, Mode=OneWay, Converter={StaticResource BoolToInvertedVisibilityConverter}}">
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Spacing="8">
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
||||||
<FontIcon
|
<FontIcon
|
||||||
HorizontalAlignment="Left"
|
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="16"
|
FontSize="16"
|
||||||
Glyph="" />
|
Glyph="" />
|
||||||
@@ -138,28 +152,29 @@
|
|||||||
Text="Settings" />
|
Text="Settings" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="12"
|
Style="{StaticResource CaptionTextBlockStyle}"
|
||||||
Text="{x:Bind CurrentPageViewModel.Title, Mode=OneWay}"
|
Text="{x:Bind CurrentPageViewModel.Title, Mode=OneWay}"
|
||||||
Visibility="{x:Bind CurrentPageViewModel.IsNested, Mode=OneWay}" />
|
Visibility="{x:Bind CurrentPageViewModel.IsNested, Mode=OneWay}" />
|
||||||
|
|
||||||
<StackPanel
|
<StackPanel
|
||||||
Grid.Column="2"
|
Grid.Column="2"
|
||||||
|
Padding="0,0,4,0"
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
Orientation="Horizontal"
|
Orientation="Horizontal"
|
||||||
Spacing="4">
|
Spacing="4">
|
||||||
<Button
|
<Button
|
||||||
x:Name="PrimaryButton"
|
x:Name="PrimaryButton"
|
||||||
Padding="6,4,4,4"
|
Padding="6,4,4,4"
|
||||||
|
animations:Implicit.HideAnimations="{StaticResource HideAnimations}"
|
||||||
|
animations:Implicit.ShowAnimations="{StaticResource ShowAnimations}"
|
||||||
|
ui:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
|
||||||
x:Load="{x:Bind IsLoaded, Mode=OneWay}"
|
x:Load="{x:Bind IsLoaded, Mode=OneWay}"
|
||||||
Background="Transparent"
|
Background="Transparent"
|
||||||
Style="{StaticResource SubtleButtonStyle}"
|
Style="{StaticResource SubtleButtonStyle}"
|
||||||
Tapped="PrimaryButton_Tapped"
|
Tapped="PrimaryButton_Tapped"
|
||||||
Visibility="{x:Bind ViewModel.HasPrimaryCommand, Mode=OneWay}">
|
Visibility="{x:Bind ViewModel.HasPrimaryCommand, Mode=OneWay}">
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Spacing="8">
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
||||||
<TextBlock
|
<TextBlock
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
@@ -183,11 +198,13 @@
|
|||||||
<Button
|
<Button
|
||||||
x:Name="SecondaryButton"
|
x:Name="SecondaryButton"
|
||||||
Padding="6,4,4,4"
|
Padding="6,4,4,4"
|
||||||
|
animations:Implicit.HideAnimations="{StaticResource HideAnimations}"
|
||||||
|
animations:Implicit.ShowAnimations="{StaticResource ShowAnimations}"
|
||||||
|
ui:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
|
||||||
x:Load="{x:Bind IsLoaded, Mode=OneWay}"
|
x:Load="{x:Bind IsLoaded, Mode=OneWay}"
|
||||||
Style="{StaticResource SubtleButtonStyle}"
|
Style="{StaticResource SubtleButtonStyle}"
|
||||||
Tapped="SecondaryButton_Tapped"
|
Tapped="SecondaryButton_Tapped"
|
||||||
Visibility="{x:Bind ViewModel.HasSecondaryCommand, Mode=OneWay}">
|
Visibility="{x:Bind ViewModel.HasSecondaryCommand, Mode=OneWay}">
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Spacing="8">
|
<StackPanel Orientation="Horizontal" Spacing="8">
|
||||||
<TextBlock
|
<TextBlock
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
@@ -226,7 +243,11 @@
|
|||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
x:Name="MoreCommandsButton"
|
x:Name="MoreCommandsButton"
|
||||||
|
x:Uid="MoreCommandsButton"
|
||||||
Padding="4"
|
Padding="4"
|
||||||
|
animations:Implicit.HideAnimations="{StaticResource HideAnimations}"
|
||||||
|
animations:Implicit.ShowAnimations="{StaticResource ShowAnimations}"
|
||||||
|
ui:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
|
||||||
Content="{ui:FontIcon Glyph=,
|
Content="{ui:FontIcon Glyph=,
|
||||||
FontSize=16}"
|
FontSize=16}"
|
||||||
Style="{StaticResource SubtleButtonStyle}"
|
Style="{StaticResource SubtleButtonStyle}"
|
||||||
|
|||||||
@@ -6,14 +6,14 @@
|
|||||||
|
|
||||||
<ResourceDictionary.ThemeDictionaries>
|
<ResourceDictionary.ThemeDictionaries>
|
||||||
<ResourceDictionary x:Key="Default">
|
<ResourceDictionary x:Key="Default">
|
||||||
<StaticResource x:Key="TagBackground" ResourceKey="CardBackgroundFillColorDefaultBrush" />
|
<StaticResource x:Key="TagBackground" ResourceKey="ControlSolidFillColorDefaultBrush" />
|
||||||
<StaticResource x:Key="TagBorderBrush" ResourceKey="CardStrokeColorDefaultBrush" />
|
<StaticResource x:Key="TagBorderBrush" ResourceKey="ControlStrokeColorSecondaryBrush" />
|
||||||
<StaticResource x:Key="TagForeground" ResourceKey="TextFillColorTertiaryBrush" />
|
<StaticResource x:Key="TagForeground" ResourceKey="TextFillColorTertiaryBrush" />
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|
||||||
<ResourceDictionary x:Key="Light">
|
<ResourceDictionary x:Key="Light">
|
||||||
<StaticResource x:Key="TagBackground" ResourceKey="CardBackgroundFillColorDefaultBrush" />
|
<StaticResource x:Key="TagBackground" ResourceKey="ControlSolidFillColorDefaultBrush" />
|
||||||
<StaticResource x:Key="TagBorderBrush" ResourceKey="CardStrokeColorDefaultBrush" />
|
<StaticResource x:Key="TagBorderBrush" ResourceKey="ControlStrokeColorSecondaryBrush" />
|
||||||
<StaticResource x:Key="TagForeground" ResourceKey="TextFillColorTertiaryBrush" />
|
<StaticResource x:Key="TagForeground" ResourceKey="TextFillColorTertiaryBrush" />
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
|
|
||||||
@@ -32,7 +32,6 @@
|
|||||||
<Style x:Key="DefaultTagStyle" TargetType="local:Tag">
|
<Style x:Key="DefaultTagStyle" TargetType="local:Tag">
|
||||||
<Style.Setters>
|
<Style.Setters>
|
||||||
<Setter Property="Background" Value="{ThemeResource TagBackground}" />
|
<Setter Property="Background" Value="{ThemeResource TagBackground}" />
|
||||||
<Setter Property="Foreground" Value="{ThemeResource TagForeground}" />
|
|
||||||
<Setter Property="BorderBrush" Value="{ThemeResource TagBorderBrush}" />
|
<Setter Property="BorderBrush" Value="{ThemeResource TagBorderBrush}" />
|
||||||
<Setter Property="BorderThickness" Value="{ThemeResource TagBorderThickness}" />
|
<Setter Property="BorderThickness" Value="{ThemeResource TagBorderThickness}" />
|
||||||
<Setter Property="CornerRadius" Value="{ThemeResource ControlCornerRadius}" />
|
<Setter Property="CornerRadius" Value="{ThemeResource ControlCornerRadius}" />
|
||||||
@@ -42,8 +41,8 @@
|
|||||||
<Setter Property="BackgroundSizing" Value="InnerBorderEdge" />
|
<Setter Property="BackgroundSizing" Value="InnerBorderEdge" />
|
||||||
<Setter Property="Padding" Value="{ThemeResource TagPadding}" />
|
<Setter Property="Padding" Value="{ThemeResource TagPadding}" />
|
||||||
<Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" />
|
<Setter Property="FontFamily" Value="{ThemeResource ContentControlThemeFontFamily}" />
|
||||||
|
<Setter Property="Foreground" Value="{ThemeResource TagForeground}" />
|
||||||
<Setter Property="FontWeight" Value="Normal" />
|
<Setter Property="FontWeight" Value="Normal" />
|
||||||
<Setter Property="FontSize" Value="{StaticResource CaptionTextBlockFontSize}" />
|
|
||||||
<Setter Property="UseSystemFocusVisuals" Value="{StaticResource UseSystemFocusVisuals}" />
|
<Setter Property="UseSystemFocusVisuals" Value="{StaticResource UseSystemFocusVisuals}" />
|
||||||
<Setter Property="FocusVisualMargin" Value="-3" />
|
<Setter Property="FocusVisualMargin" Value="-3" />
|
||||||
<Setter Property="Template">
|
<Setter Property="Template">
|
||||||
@@ -74,10 +73,11 @@
|
|||||||
SourceKey="{TemplateBinding Icon}" />
|
SourceKey="{TemplateBinding Icon}" />
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
|
Margin="0,-1,0,0"
|
||||||
CharacterSpacing="{TemplateBinding CharacterSpacing}"
|
CharacterSpacing="{TemplateBinding CharacterSpacing}"
|
||||||
FontFamily="{TemplateBinding FontFamily}"
|
FontFamily="{TemplateBinding FontFamily}"
|
||||||
FontSize="{TemplateBinding FontSize}"
|
|
||||||
FontWeight="{TemplateBinding FontWeight}"
|
FontWeight="{TemplateBinding FontWeight}"
|
||||||
|
Foreground="{TemplateBinding Foreground}"
|
||||||
Text="{TemplateBinding Text}" />
|
Text="{TemplateBinding Text}" />
|
||||||
</Grid>
|
</Grid>
|
||||||
</ControlTemplate>
|
</ControlTemplate>
|
||||||
|
|||||||
@@ -30,7 +30,7 @@
|
|||||||
<StackLayout
|
<StackLayout
|
||||||
x:Name="HorizontalStackLayout"
|
x:Name="HorizontalStackLayout"
|
||||||
Orientation="Horizontal"
|
Orientation="Horizontal"
|
||||||
Spacing="8" />
|
Spacing="4" />
|
||||||
|
|
||||||
<DataTemplate x:Key="TagTemplate" x:DataType="viewmodels:TagViewModel">
|
<DataTemplate x:Key="TagTemplate" x:DataType="viewmodels:TagViewModel">
|
||||||
<ItemContainer>
|
<ItemContainer>
|
||||||
@@ -89,6 +89,7 @@
|
|||||||
<ItemsView
|
<ItemsView
|
||||||
Grid.RowSpan="2"
|
Grid.RowSpan="2"
|
||||||
Grid.Column="2"
|
Grid.Column="2"
|
||||||
|
Margin="0,0,8,0"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
IsHitTestVisible="False"
|
IsHitTestVisible="False"
|
||||||
IsItemInvokedEnabled="False"
|
IsItemInvokedEnabled="False"
|
||||||
@@ -103,7 +104,6 @@
|
|||||||
</Page.Resources>
|
</Page.Resources>
|
||||||
|
|
||||||
<Grid>
|
<Grid>
|
||||||
|
|
||||||
<controls:SwitchPresenter
|
<controls:SwitchPresenter
|
||||||
HorizontalAlignment="Stretch"
|
HorizontalAlignment="Stretch"
|
||||||
TargetType="x:Boolean"
|
TargetType="x:Boolean"
|
||||||
@@ -111,6 +111,7 @@
|
|||||||
<controls:Case Value="False">
|
<controls:Case Value="False">
|
||||||
<ListView
|
<ListView
|
||||||
x:Name="ItemsList"
|
x:Name="ItemsList"
|
||||||
|
Padding="0,2,0,0"
|
||||||
DoubleTapped="ItemsList_DoubleTapped"
|
DoubleTapped="ItemsList_DoubleTapped"
|
||||||
IsDoubleTapEnabled="True"
|
IsDoubleTapEnabled="True"
|
||||||
IsItemClickEnabled="True"
|
IsItemClickEnabled="True"
|
||||||
|
|||||||
@@ -42,6 +42,7 @@
|
|||||||
<cpcontrols:Tag
|
<cpcontrols:Tag
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
BackgroundColor="{x:Bind Background, Mode=OneWay}"
|
BackgroundColor="{x:Bind Background, Mode=OneWay}"
|
||||||
|
FontSize="12"
|
||||||
ForegroundColor="{x:Bind Foreground, Mode=OneWay}"
|
ForegroundColor="{x:Bind Foreground, Mode=OneWay}"
|
||||||
Icon="{x:Bind Icon, Mode=OneWay}"
|
Icon="{x:Bind Icon, Mode=OneWay}"
|
||||||
Text="{x:Bind Text, Mode=OneWay}"
|
Text="{x:Bind Text, Mode=OneWay}"
|
||||||
@@ -100,9 +101,9 @@
|
|||||||
x:Name="TagsWrapPanel"
|
x:Name="TagsWrapPanel"
|
||||||
MinWidth="0"
|
MinWidth="0"
|
||||||
Padding="0"
|
Padding="0"
|
||||||
HorizontalSpacing="8"
|
HorizontalSpacing="4"
|
||||||
Orientation="Horizontal"
|
Orientation="Horizontal"
|
||||||
VerticalSpacing="8" />
|
VerticalSpacing="4" />
|
||||||
</ItemsPanelTemplate>
|
</ItemsPanelTemplate>
|
||||||
</ItemsControl.ItemsPanel>
|
</ItemsControl.ItemsPanel>
|
||||||
</ItemsControl>
|
</ItemsControl>
|
||||||
@@ -300,11 +301,34 @@
|
|||||||
<ScrollViewer
|
<ScrollViewer
|
||||||
x:Name="DetailsContent"
|
x:Name="DetailsContent"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
|
Margin="4"
|
||||||
HorizontalAlignment="Stretch"
|
HorizontalAlignment="Stretch"
|
||||||
|
ui:VisualExtensions.NormalizedCenterPoint="0.5,0.5"
|
||||||
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
|
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
|
||||||
BorderBrush="{ThemeResource DividerStrokeColorDefaultBrush}"
|
BorderBrush="{ThemeResource DividerStrokeColorDefaultBrush}"
|
||||||
BorderThickness="1,0,0,0"
|
BorderThickness="1"
|
||||||
|
CornerRadius="{StaticResource ControlCornerRadius}"
|
||||||
Visibility="Collapsed">
|
Visibility="Collapsed">
|
||||||
|
<animations:Implicit.ShowAnimations>
|
||||||
|
<animations:OpacityAnimation
|
||||||
|
From="0"
|
||||||
|
To="1.0"
|
||||||
|
Duration="0:0:0.270" />
|
||||||
|
<animations:TranslationAnimation
|
||||||
|
From="24,0,0"
|
||||||
|
To="0,0,0"
|
||||||
|
Duration="0:0:0.280" />
|
||||||
|
</animations:Implicit.ShowAnimations>
|
||||||
|
<animations:Implicit.HideAnimations>
|
||||||
|
<animations:OpacityAnimation
|
||||||
|
From="1.0"
|
||||||
|
To="0"
|
||||||
|
Duration="0:0:0.180" />
|
||||||
|
<animations:TranslationAnimation
|
||||||
|
From="0,0,0"
|
||||||
|
To="24,0,0"
|
||||||
|
Duration="0:0:0.220" />
|
||||||
|
</animations:Implicit.HideAnimations>
|
||||||
<Grid Margin="12">
|
<Grid Margin="12">
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto" />
|
<RowDefinition Height="Auto" />
|
||||||
@@ -346,7 +370,7 @@
|
|||||||
ItemTemplate="{StaticResource DetailsDataTemplateSelector}"
|
ItemTemplate="{StaticResource DetailsDataTemplateSelector}"
|
||||||
ItemsSource="{x:Bind ViewModel.Details.Metadata, Mode=OneWay}">
|
ItemsSource="{x:Bind ViewModel.Details.Metadata, Mode=OneWay}">
|
||||||
<ItemsRepeater.Layout>
|
<ItemsRepeater.Layout>
|
||||||
<StackLayout Spacing="8" />
|
<StackLayout Spacing="12" />
|
||||||
</ItemsRepeater.Layout>
|
</ItemsRepeater.Layout>
|
||||||
</ItemsRepeater>
|
</ItemsRepeater>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
@@ -373,4 +373,10 @@ Right-click to remove the key combination, thereby deactivating the shortcut.</v
|
|||||||
<data name="Settings_GeneralPage_NavigationViewItem_Extensions.Content" xml:space="preserve">
|
<data name="Settings_GeneralPage_NavigationViewItem_Extensions.Content" xml:space="preserve">
|
||||||
<value>Extensions</value>
|
<value>Extensions</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="MoreCommandsButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
|
||||||
|
<value>More commands</value>
|
||||||
|
</data>
|
||||||
|
<data name="SettingsButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve">
|
||||||
|
<value>Open Command Palette settings</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
||||||
Reference in New Issue
Block a user