Enhance GlobalHotkeyService to allow for dynamic hotkey updates and improve user experience with customizable HotkeyModifiers and HotkeyVirtualKey settings.

This commit is contained in:
2026-02-22 12:14:57 -05:00
parent 742c1d70fe
commit 52a2515e2d
4 changed files with 27 additions and 12 deletions

View File

@@ -371,22 +371,24 @@
FontWeight="SemiBold"
VerticalAlignment="Center"/>
</StackPanel>
<TextBlock Text="The key combination to save a clip."
<TextBlock Text="Click the key below, then press your desired combination."
FontSize="12"
Foreground="{ThemeResource TextFillColorSecondaryBrush}"/>
<Border Background="#1a1a2e"
<Button x:Name="HotkeyRecorderButton"
HorizontalAlignment="Left"
Click="HotkeyRecorderButton_Click"
Background="#1a1a2e"
BorderThickness="0"
CornerRadius="6"
Padding="16,10"
HorizontalAlignment="Left">
<TextBlock Text="Alt + F9"
MinWidth="140">
<TextBlock x:Name="HotkeyRecorderText"
Text="Alt + F9"
FontFamily="Consolas"
FontSize="14"
FontWeight="Bold"
Foreground="#E8FF47"/>
</Border>
<TextBlock Text="Hotkey remapping coming in a future update."
FontSize="11"
Foreground="{ThemeResource TextFillColorTertiaryBrush}"/>
</Button>
</StackPanel>
</Border>