2020-07-18 02:01:46 +08:00
|
|
|
<Page
|
|
|
|
x:Class="Microsoft.PowerToys.Settings.UI.Views.KeyboardManagerPage"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:local="using:Microsoft.PowerToys.Settings.UI.Views"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2020-08-18 06:00:19 +08:00
|
|
|
xmlns:viewModel="using:Microsoft.PowerToys.Settings.UI.Lib.ViewModels"
|
2020-07-18 02:01:46 +08:00
|
|
|
xmlns:extensions="using:Microsoft.Toolkit.Uwp.UI.Extensions"
|
|
|
|
xmlns:CustomControls="using:Microsoft.PowerToys.Settings.UI.Controls"
|
|
|
|
xmlns:Lib="using:Microsoft.PowerToys.Settings.UI.Lib"
|
|
|
|
mc:Ignorable="d"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
|
|
|
|
<Page.Resources>
|
|
|
|
<local:VisibleIfNotEmpty x:Key="visibleIfNotEmptyConverter" />
|
2020-09-05 03:42:41 +08:00
|
|
|
<Style TargetType="ListViewItem" x:Name="KeysListViewContainerStyle">
|
|
|
|
<Setter Property="IsTabStop" Value="False"/>
|
|
|
|
</Style>
|
2020-07-18 02:01:46 +08:00
|
|
|
<DataTemplate x:Name="KeysListViewTemplate" x:DataType="Lib:KeysDataModel">
|
2020-09-09 01:25:53 +08:00
|
|
|
<StackPanel
|
|
|
|
Name="KeyboardManager_RemappedKeysListItem"
|
|
|
|
x:Uid="KeyboardManager_RemappedKeysListItem"
|
2020-07-18 02:01:46 +08:00
|
|
|
Orientation="Horizontal"
|
|
|
|
Height="56">
|
|
|
|
<ItemsControl
|
2020-09-05 03:42:41 +08:00
|
|
|
ItemsSource="{x:Bind GetOriginalKeys()}"
|
|
|
|
IsTabStop="False">
|
2020-07-18 02:01:46 +08:00
|
|
|
<ItemsControl.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal"/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Border
|
|
|
|
Background="{ThemeResource SystemBaseLowColor}"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="14,0,14,0"
|
|
|
|
Margin="5,0,5,0"
|
|
|
|
Height="36"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
HorizontalAlignment="Left">
|
|
|
|
<TextBlock
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
FontSize="12"
|
|
|
|
Text="{Binding}" />
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
|
|
<FontIcon Glyph=""
|
|
|
|
Grid.Column="1"
|
|
|
|
FontSize="14"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Margin="5,0,5,0"/>
|
|
|
|
<ItemsControl
|
2020-09-09 01:25:53 +08:00
|
|
|
Name="KeyboardManager_RemappedTo"
|
|
|
|
x:Uid="KeyboardManager_RemappedTo"
|
2020-07-18 02:01:46 +08:00
|
|
|
ItemsSource="{x:Bind GetNewRemapKeys()}"
|
2020-09-05 03:42:41 +08:00
|
|
|
Grid.Column="2"
|
|
|
|
IsTabStop="False">
|
2020-07-18 02:01:46 +08:00
|
|
|
<ItemsControl.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal"/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Border
|
|
|
|
Background="{ThemeResource SystemAccentColor}"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="14,0,14,0"
|
|
|
|
Margin="5,0,5,0"
|
|
|
|
Height="36"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
HorizontalAlignment="Left">
|
|
|
|
<TextBlock
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Foreground="White"
|
|
|
|
FontSize="12"
|
|
|
|
Text="{Binding}" />
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
|
|
</StackPanel>
|
|
|
|
</DataTemplate>
|
|
|
|
<DataTemplate x:Name="ShortcutKeysListViewTemplate" x:DataType="Lib:AppSpecificKeysDataModel">
|
2020-09-09 01:25:53 +08:00
|
|
|
<StackPanel
|
|
|
|
Name="KeyboardManager_RemappedShortcutsListItem"
|
|
|
|
x:Uid="KeyboardManager_RemappedShortcutsListItem"
|
2020-07-18 02:01:46 +08:00
|
|
|
Orientation="Horizontal"
|
|
|
|
Height="56">
|
|
|
|
<ItemsControl
|
2020-09-05 03:42:41 +08:00
|
|
|
ItemsSource="{x:Bind GetOriginalKeys()}"
|
|
|
|
IsTabStop="False">
|
2020-07-18 02:01:46 +08:00
|
|
|
<ItemsControl.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal"/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Border
|
|
|
|
Background="{ThemeResource SystemBaseLowColor}"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="14,0,14,0"
|
|
|
|
Margin="5,0,5,0"
|
|
|
|
Height="36"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
HorizontalAlignment="Left">
|
|
|
|
<TextBlock
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
FontSize="12"
|
|
|
|
Text="{Binding}" />
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
|
|
<FontIcon Glyph=""
|
|
|
|
Grid.Column="1"
|
|
|
|
FontSize="14"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Margin="5,0,5,0"/>
|
2020-09-09 01:25:53 +08:00
|
|
|
<ItemsControl Name="KeyboardManager_ShortcutRemappedTo"
|
|
|
|
x:Uid="KeyboardManager_ShortcutRemappedTo"
|
2020-07-18 02:01:46 +08:00
|
|
|
ItemsSource="{x:Bind GetNewRemapKeys()}"
|
2020-09-05 03:42:41 +08:00
|
|
|
Grid.Column="2"
|
|
|
|
IsTabStop="False">
|
2020-07-18 02:01:46 +08:00
|
|
|
<ItemsControl.ItemsPanel>
|
|
|
|
<ItemsPanelTemplate>
|
|
|
|
<StackPanel Orientation="Horizontal"/>
|
|
|
|
</ItemsPanelTemplate>
|
|
|
|
</ItemsControl.ItemsPanel>
|
|
|
|
<ItemsControl.ItemTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<Border
|
|
|
|
Background="{ThemeResource SystemAccentColor}"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="14,0,14,0"
|
|
|
|
Margin="5,0,5,0"
|
|
|
|
Height="36"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
HorizontalAlignment="Left">
|
|
|
|
<TextBlock
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Foreground="White"
|
|
|
|
FontSize="12"
|
|
|
|
Text="{Binding}" />
|
|
|
|
</Border>
|
|
|
|
</DataTemplate>
|
|
|
|
</ItemsControl.ItemTemplate>
|
|
|
|
</ItemsControl>
|
|
|
|
<FontIcon Glyph=""
|
|
|
|
Grid.Column="3"
|
|
|
|
FontSize="14"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
Margin="5,0,5,0"/>
|
|
|
|
<Border
|
2020-09-09 01:25:53 +08:00
|
|
|
Name="KeyboardManager_TargetApp"
|
|
|
|
x:Uid="KeyboardManager_TargetApp"
|
2020-07-18 02:01:46 +08:00
|
|
|
Background="{ThemeResource SystemAccentColor}"
|
|
|
|
Grid.Column="4"
|
|
|
|
CornerRadius="4"
|
|
|
|
Padding="14,0,14,0"
|
|
|
|
Margin="5,0,5,0"
|
|
|
|
Height="36"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
HorizontalAlignment="Left">
|
|
|
|
<TextBlock
|
|
|
|
FontWeight="SemiBold"
|
|
|
|
VerticalAlignment="Center"
|
|
|
|
TextAlignment="Center"
|
|
|
|
Foreground="White"
|
|
|
|
FontSize="12"
|
|
|
|
Text="{x:Bind TargetApp}" />
|
|
|
|
</Border>
|
|
|
|
</StackPanel>
|
|
|
|
</DataTemplate>
|
|
|
|
</Page.Resources>
|
|
|
|
|
2020-08-08 03:00:48 +08:00
|
|
|
<Grid RowSpacing="{StaticResource DefaultRowSpacing}">
|
2020-07-18 02:01:46 +08:00
|
|
|
<VisualStateManager.VisualStateGroups>
|
|
|
|
<VisualStateGroup x:Name="LayoutVisualStates">
|
|
|
|
<VisualState x:Name="WideLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource WideLayoutMinWidth}" />
|
|
|
|
</VisualState.StateTriggers>
|
|
|
|
</VisualState>
|
|
|
|
<VisualState x:Name="SmallLayout">
|
|
|
|
<VisualState.StateTriggers>
|
|
|
|
<AdaptiveTrigger MinWindowWidth="{StaticResource SmallLayoutMinWidth}" />
|
2020-08-08 03:00:48 +08:00
|
|
|
<AdaptiveTrigger MinWindowWidth="0" />
|
2020-07-18 02:01:46 +08:00
|
|
|
</VisualState.StateTriggers>
|
|
|
|
<VisualState.Setters>
|
2020-07-25 03:02:56 +08:00
|
|
|
<Setter Target="SidePanel.(Grid.Column)" Value="0"/>
|
2020-08-08 03:00:48 +08:00
|
|
|
<Setter Target="SidePanel.Width" Value="Auto"/>
|
2020-07-25 03:02:56 +08:00
|
|
|
<Setter Target="KeyboardManagerView.(Grid.Row)" Value="1" />
|
|
|
|
<Setter Target="LinksPanel.(RelativePanel.RightOf)" Value="AboutImage"/>
|
|
|
|
<Setter Target="LinksPanel.(RelativePanel.AlignTopWith)" Value="AboutImage"/>
|
|
|
|
<Setter Target="AboutImage.Margin" Value="0,12,12,0"/>
|
|
|
|
<Setter Target="AboutTitle.Visibility" Value="Collapsed" />
|
2020-07-18 02:01:46 +08:00
|
|
|
</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-07-25 03:02:56 +08:00
|
|
|
<StackPanel Orientation="Vertical" x:Name="KeyboardManagerView">
|
2020-07-18 02:01:46 +08:00
|
|
|
<ToggleSwitch x:Uid="KeyboardManager_EnableToggle"
|
2020-07-25 03:02:56 +08:00
|
|
|
IsOn="{x:Bind Path=ViewModel.Enabled, Mode=TwoWay}"/>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
|
|
|
<!--<TextBlock x:Uid="KeyboardManager_ConfigHeader"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"/>
|
|
|
|
|
|
|
|
<TextBlock x:Uid="KeyboardManager_ProfileDescription"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"/>
|
|
|
|
|
|
|
|
<ComboBox SelectedIndex="1" MinWidth="160"
|
|
|
|
Margin="{StaticResource SmallTopMargin}">
|
|
|
|
<ComboBoxItem Content="Config-1"/>
|
|
|
|
<ComboBoxItem Content="Config-2"/>
|
|
|
|
<ComboBoxItem Content="Config-3"/>
|
|
|
|
</ComboBox>-->
|
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="KeyboardManager_RemapKeyboardHeader"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.Enabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="KeyboardManager_RemapKeyboardSubtitle"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.Enabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
|
|
|
<Button x:Uid="KeyboardManager_RemapKeyboardButton"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Style="{StaticResource AccentButtonStyle}"
|
|
|
|
Command="{Binding Path=RemapKeyboardCommand}"
|
|
|
|
IsEnabled="{x:Bind Path=ViewModel.Enabled, Mode=OneWay}"/>
|
|
|
|
|
|
|
|
<ListView x:Name="RemapKeysList"
|
2020-09-09 01:25:53 +08:00
|
|
|
x:Uid="RemapKeysList"
|
2020-07-18 02:01:46 +08:00
|
|
|
extensions:ListViewExtensions.AlternateColor="{ThemeResource SystemControlBackgroundListLowBrush}"
|
|
|
|
ItemsSource="{x:Bind Path=ViewModel.RemapKeys, Mode=OneWay}"
|
|
|
|
ItemTemplate="{StaticResource KeysListViewTemplate}"
|
|
|
|
BorderBrush="{ThemeResource SystemControlForegroundBaseMediumLowBrush}"
|
|
|
|
BorderThickness="1"
|
|
|
|
CornerRadius="4"
|
|
|
|
MinWidth="350"
|
|
|
|
MaxHeight="200"
|
|
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
SelectionMode="None"
|
|
|
|
IsSwipeEnabled="False"
|
|
|
|
Visibility="{x:Bind Path=ViewModel.RemapKeys, Mode=OneWay, Converter={StaticResource visibleIfNotEmptyConverter}}"
|
|
|
|
IsEnabled="{x:Bind Path=ViewModel.Enabled, Mode=OneWay}"
|
2020-09-05 03:42:41 +08:00
|
|
|
ItemContainerStyle="{StaticResource KeysListViewContainerStyle}"
|
2020-07-18 02:01:46 +08:00
|
|
|
/>
|
|
|
|
|
|
|
|
<!--<AppBarButton x:Uid="KeyboardManager_RemapKeyboardButton"
|
|
|
|
Icon="Add"
|
|
|
|
Width="370"
|
|
|
|
Style="{StaticResource AddItemAppBarButtonStyle}"
|
|
|
|
Command="{Binding Path=RemapKeyboardCommand}"
|
|
|
|
Margin="{StaticResource AddItemButtonMargin}"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
IsEnabled="{x:Bind Path=ViewModel.Enabled, Mode=OneWay}"/>-->
|
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="KeyboardManager_RemapShortcutsHeader"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.Enabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="KeyboardManager_RemapShortcutsSubtitle"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
2020-08-08 03:00:48 +08:00
|
|
|
TextWrapping="WrapWholeWords"
|
2020-07-25 03:02:56 +08:00
|
|
|
Foreground="{x:Bind Mode=OneWay, Path=ViewModel.Enabled, Converter={StaticResource ModuleEnabledToForegroundConverter}}"/>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
|
|
|
<Button x:Uid="KeyboardManager_RemapShortcutsButton"
|
|
|
|
Margin="{StaticResource SmallTopMargin}"
|
|
|
|
Style="{StaticResource AccentButtonStyle}"
|
|
|
|
Command="{Binding Path=EditShortcutCommand}"
|
|
|
|
IsEnabled="{x:Bind Path=ViewModel.Enabled, Mode=OneWay}"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<ListView x:Name="RemapShortcutsList"
|
2020-09-09 01:25:53 +08:00
|
|
|
x:Uid="RemapShortcutsList"
|
2020-07-18 02:01:46 +08:00
|
|
|
extensions:ListViewExtensions.AlternateColor="{ThemeResource SystemControlBackgroundListLowBrush}"
|
|
|
|
ItemsSource="{x:Bind Path=ViewModel.RemapShortcuts, Mode=OneWay}"
|
|
|
|
ItemTemplate="{StaticResource ShortcutKeysListViewTemplate}"
|
|
|
|
BorderBrush="{ThemeResource SystemControlForegroundBaseMediumLowBrush}"
|
|
|
|
BorderThickness="1"
|
|
|
|
CornerRadius="4"
|
|
|
|
MinWidth="350"
|
|
|
|
MaxHeight="200"
|
|
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
SelectionMode="None"
|
|
|
|
IsSwipeEnabled="False"
|
|
|
|
Visibility="{x:Bind Path=ViewModel.RemapShortcuts, Mode=OneWay, Converter={StaticResource visibleIfNotEmptyConverter}}"
|
|
|
|
IsEnabled="{x:Bind Path=ViewModel.Enabled, Mode=OneWay}"
|
|
|
|
ScrollViewer.HorizontalScrollMode="Enabled"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Visible"
|
|
|
|
ScrollViewer.IsHorizontalRailEnabled="True"
|
2020-09-05 03:42:41 +08:00
|
|
|
ItemContainerStyle="{StaticResource KeysListViewContainerStyle}"
|
2020-07-18 02:01:46 +08:00
|
|
|
/>
|
|
|
|
|
|
|
|
<!--<AppBarButton x:Uid="KeyboardManager_RemapShortcutsButton"
|
|
|
|
Icon="Add"
|
|
|
|
Width="370"
|
|
|
|
Style="{StaticResource AddItemAppBarButtonStyle}"
|
|
|
|
Command="{Binding Path=EditShortcutCommand}"
|
|
|
|
IsEnabled="{x:Bind Path=ViewModel.Enabled, Mode=OneWay}"
|
|
|
|
Margin="{StaticResource AddItemButtonMargin}"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
/>-->
|
|
|
|
</StackPanel>
|
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<RelativePanel x:Name="SidePanel"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Width="{StaticResource SidePanelWidth}"
|
|
|
|
Grid.Column="1">
|
|
|
|
<StackPanel x:Name="DescriptionPanel">
|
|
|
|
<TextBlock x:Uid="About_KeyboardManager"
|
|
|
|
x:Name="AboutTitle"
|
|
|
|
Grid.ColumnSpan="2"
|
|
|
|
Style="{StaticResource SettingsGroupTitleStyle}"
|
|
|
|
Margin="{StaticResource XSmallBottomMargin}"/>
|
|
|
|
<TextBlock x:Uid="KeyboardManager_Description"
|
|
|
|
TextWrapping="Wrap"
|
|
|
|
Grid.Row="1" />
|
|
|
|
</StackPanel>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<Border x:Name="AboutImage"
|
|
|
|
CornerRadius="4"
|
|
|
|
Grid.Row="2"
|
|
|
|
MaxWidth="240"
|
|
|
|
HorizontalAlignment="Left"
|
|
|
|
Margin="{StaticResource SmallTopBottomMargin}"
|
|
|
|
RelativePanel.Below="DescriptionPanel">
|
2020-09-09 01:25:53 +08:00
|
|
|
<Image x:Uid="KeyboardManager_Image" Source="ms-appx:///Assets/Modules/KBM.png" />
|
2020-07-25 03:02:56 +08:00
|
|
|
</Border>
|
2020-07-18 02:01:46 +08:00
|
|
|
|
2020-07-25 03:02:56 +08:00
|
|
|
<StackPanel x:Name="LinksPanel"
|
2020-08-08 03:00:48 +08:00
|
|
|
Margin="0,1,0,0"
|
2020-07-25 03:02:56 +08:00
|
|
|
RelativePanel.Below="AboutImage"
|
|
|
|
Orientation="Vertical" >
|
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/PowerToysOverview_KeyboardManager">
|
|
|
|
<TextBlock x:Uid="Module_overview" />
|
|
|
|
</HyperlinkButton>
|
2020-08-07 01:09:50 +08:00
|
|
|
<HyperlinkButton NavigateUri="https://aka.ms/powerToysGiveFeedback">
|
2020-07-25 03:02:56 +08:00
|
|
|
<TextBlock x:Uid="Give_Feedback" />
|
|
|
|
</HyperlinkButton>
|
|
|
|
</StackPanel>
|
|
|
|
</RelativePanel>
|
2020-07-18 02:01:46 +08:00
|
|
|
</Grid>
|
2020-07-25 03:02:56 +08:00
|
|
|
</Page>
|