diff --git a/Flow.Launcher/Resources/Controls/HotkeyDisplay.xaml b/Flow.Launcher/Resources/Controls/HotkeyDisplay.xaml
new file mode 100644
index 000000000..269f095f3
--- /dev/null
+++ b/Flow.Launcher/Resources/Controls/HotkeyDisplay.xaml
@@ -0,0 +1,54 @@
+
+
+
+
+
diff --git a/Flow.Launcher/Resources/Controls/HotkeyDisplay.xaml.cs b/Flow.Launcher/Resources/Controls/HotkeyDisplay.xaml.cs
new file mode 100644
index 000000000..d83b44fac
--- /dev/null
+++ b/Flow.Launcher/Resources/Controls/HotkeyDisplay.xaml.cs
@@ -0,0 +1,34 @@
+using System;
+using System.Collections.Generic;
+using System.Globalization;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+
+namespace Flow.Launcher.Resources.Controls
+{
+ public partial class HotkeyDisplay : UserControl
+ {
+ public HotkeyDisplay()
+ {
+ InitializeComponent();
+ }
+
+ public string Keys
+ {
+ get { return (string)GetValue(KeysValueProperty); }
+ set { SetValue(KeysValueProperty, value); }
+ }
+ public static readonly DependencyProperty KeysValueProperty =
+ DependencyProperty.Register("Keys", typeof(string), typeof(HotkeyDisplay), new PropertyMetadata(string.Empty));
+ }
+}
diff --git a/Flow.Launcher/SettingWindow.xaml b/Flow.Launcher/SettingWindow.xaml
index 3e4f827a6..064e86382 100644
--- a/Flow.Launcher/SettingWindow.xaml
+++ b/Flow.Launcher/SettingWindow.xaml
@@ -2722,7 +2722,9 @@
Title="{DynamicResource flowlauncherHotkey}"
Icon=""
Sub="{DynamicResource flowlauncherHotkeyToolTip}"
- Type="Inside" />
+ Type="Inside">
+
+