浏览代码

Use 'Backspace' as shortcut key #248

Ruben 1 月之前
父节点
当前提交
7f961c60b5
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/PicView.Avalonia/CustomControls/KeybindTextBox.cs

+ 5 - 0
src/PicView.Avalonia/CustomControls/KeybindTextBox.cs

@@ -101,6 +101,11 @@ public class KeybindTextBox : TextBox
         }
     }
 
+    protected override void OnKeyDown(KeyEventArgs e)
+    {
+        // Disable keyboard behavior #248
+    }
+
     private void OnGotFocus(object? sender, GotFocusEventArgs e)
     {
         if (IsReadOnly)