Skip to content

Commit d573c48

Browse files
committed
Add Autocomplete Key (Page3) in Wizard
1 parent d1047c9 commit d573c48

File tree

2 files changed

+24
-3
lines changed

2 files changed

+24
-3
lines changed

Flow.Launcher/Languages/en.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,7 @@
267267
<system:String x:Key="HotkeyCtrlShiftEnterDesc">Run as Admin</system:String>
268268
<system:String x:Key="HotkeyCtrlHDesc">Query History</system:String>
269269
<system:String x:Key="HotkeyESCDesc">Back to Result in Context Menu</system:String>
270+
<system:String x:Key="HotkeyTabDesc">Autocomplete</system:String>
270271
<system:String x:Key="HotkeyRunDesc">Open / Run Selected Item</system:String>
271272
<system:String x:Key="HotkeyCtrlIDesc">Open Setting Window</system:String>
272273
<system:String x:Key="HotkeyF5Desc">Reload Plugin Data</system:String>

Flow.Launcher/Resources/Pages/WelcomePage3.xaml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
55
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
66
xmlns:local="clr-namespace:Flow.Launcher.Resources.Pages"
7-
xmlns:ui="http://schemas.modernwpf.com/2019"
87
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
8+
xmlns:ui="http://schemas.modernwpf.com/2019"
99
Title="WelcomePage3"
1010
mc:Ignorable="d">
1111
<Page.Resources>
1212
<Style x:Key="KbdLine" TargetType="Border">
1313
<Setter Property="CornerRadius" Value="8" />
14-
<Setter Property="Margin" Value="0,4,0,4" />
14+
<Setter Property="Margin" Value="0,3,0,3" />
1515
<Setter Property="Background" Value="{DynamicResource Color01B}" />
1616
</Style>
1717
<Style x:Key="Kbd" TargetType="Border">
@@ -60,7 +60,7 @@
6060
VerticalScrollBarVisibility="Auto">
6161
<Grid>
6262
<StackPanel Margin="24,20,24,20">
63-
<StackPanel Margin="0,0,0,20">
63+
<StackPanel Margin="0,0,0,10">
6464
<TextBlock
6565
FontSize="20"
6666
FontWeight="SemiBold"
@@ -155,6 +155,26 @@
155155
</StackPanel>
156156
</Border>
157157

158+
<Border Style="{DynamicResource KbdLine}">
159+
<StackPanel Orientation="Horizontal">
160+
<StackPanel
161+
Width="210"
162+
Margin="20,5,4,5"
163+
VerticalAlignment="Center"
164+
Orientation="Horizontal">
165+
<Border Margin="0,0,5,0" Style="{DynamicResource Kbd}">
166+
<TextBlock Style="{DynamicResource KbdText}" Text="Tab" />
167+
</Border>
168+
</StackPanel>
169+
<StackPanel VerticalAlignment="Center">
170+
<TextBlock
171+
VerticalAlignment="Center"
172+
FontSize="13"
173+
Text="{DynamicResource HotkeyTabDesc}" />
174+
</StackPanel>
175+
</StackPanel>
176+
</Border>
177+
158178
<Border Style="{DynamicResource KbdLine}">
159179
<StackPanel Orientation="Horizontal">
160180
<StackPanel

0 commit comments

Comments
 (0)