添加键盘"Shortcuts/Hotkeys"以控制应用程序的最佳方法



我正在处理一个桌面应用程序,我希望在其中允许用户通过键盘控制其功能,还允许他根据其点将默认控制器更改为自定义控制器视图。

我的问题是,解决此问题并为此问题提供适当解决方案的最佳方法是什么?

您可以使用字典将每个键绑定到动作

我在这里的方法是使用 dictionary 键是实际键bord ,值是代表您的功能之一的 int?可以绑定到自定义输入。

Dictionnary<Keys, int?> shortcutDictionnary = new Dictionary<Keys, int?>();
// Add a new Keys
shortcutDictionary.Add(Keys.A, 1);
// Change a Keys value (change shortcut bounded to it)
shortcutDictionary[Keys.A] = 4;

要将这些 int?与这些功能匹配,您只需要使用 switch

int? num = null;
if (this.shortcutDictionary.TryGetValue(keyPressed, out num))
{
    switch (num)
    {
        case 1:
            attack();
            break;
        case 2:
            defend();
            break;
        case 3:
            hide();
            break;
        case 4:
            dance();
            break;
        default:
            Console.WriteLine("Key not bounded");
            break;
    }
}

我在下面的代码中也使用 enum ,而不是直接使用对我的 dictionary
这样,我可以选择哪个可以被边界,哪个键不能。

我的代码是由Winform应用程序制成的,作为一个景象,我只使用了4个键(a,b,c,d),可以绑定,一个可以轻松更改绑定(l)),但我敢肯定,您可以弄清楚如何使用任何其他方法轻松更改绑定。另外,当我使用WindowsForm时,我必须设置 keypreview = true。
这是我的代码:

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace Project
{
    public enum UsableKeys
    {
        A = Keys.A,
        B = Keys.B,
        C = Keys.C,
        D = Keys.D,
    }
    public partial class Form1 : Form
    {
        Dictionary<UsableKeys, int?> shortcutDictionary = new Dictionary<UsableKeys, int?>();
        public Form1()
        {
            InitializeComponent();
            foreach (UsableKeys key in Enum.GetValues(typeof(UsableKeys)))
            {
                // You may add default shortcut here
                this.shortcutDictionary.Add(key, null);
            }
        }
        private void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            UsableKeys keyPressed = (UsableKeys)e.KeyCode;
            if (this.shortcutDictionary.ContainsKey(keyPressed))
            {
                executeAction(keyPressed);
                e.Handled = true;
                e.SuppressKeyPress = true;
            }
            else if (e.KeyCode == Keys.L)
            {
                switch (this.shortcutDictionary[UsableKeys.A])
                {
                    case 1:
                        this.shortcutDictionary[UsableKeys.A] = 4;
                        this.shortcutDictionary[UsableKeys.B] = 3;
                        this.shortcutDictionary[UsableKeys.C] = 2;
                        this.shortcutDictionary[UsableKeys.D] = 1;
                        break;
                    case null:
                        this.shortcutDictionary[UsableKeys.A] = 1;
                        this.shortcutDictionary[UsableKeys.B] = 2;
                        this.shortcutDictionary[UsableKeys.C] = 3;
                        this.shortcutDictionary[UsableKeys.D] = 4;
                        break;
                    case 4:
                        this.shortcutDictionary[UsableKeys.A] = null;
                        this.shortcutDictionary[UsableKeys.B] = null;
                        this.shortcutDictionary[UsableKeys.C] = null;
                        this.shortcutDictionary[UsableKeys.D] = null;
                        break;
                }
                e.Handled = true;
                e.SuppressKeyPress = true;
            }
        }
        private void executeAction(UsableKeys keyPressed)
        {
            int? num = null;
            if (this.shortcutDictionary.TryGetValue(keyPressed, out num))
            {
                switch (num)
                {
                    case 1:
                        attack();
                        break;
                    case 2:
                        defend();
                        break;
                    case 3:
                        hide();
                        break;
                    case 4:
                        dance();
                        break;
                    default:
                        Console.WriteLine("Key not bounded");
                        break;
                }
            }
        }
        private void attack()
        {
            Console.WriteLine("Player swing his word");
        }
        private void defend()
        {
            Console.WriteLine("Player raise his shield");
        }
        private void hide()
        {
            Console.WriteLine("Player sneak around");
        }
        private void dance()
        {
            Console.WriteLine("Player start to dance");
        }
    }
}

使用此代码,输出将就像:

// Press A, B, C or D
"Key not bounded"
// Press L
// Press A
"Player swing his word"
// Press B
"Player raise his shield"
// Press C
"Player sneak around"
// Press D
"Player start to dance"
// Press L
// Press A
"Player start to dance"
// Press B
"Player sneak around"
// Press C
"Player raise his shield"
// Press D
"Player swing his sword"
// Press L
// Press A, B, C or D
"Key not bounded"

在运行时间中更改键绑定:

// Create a new Dictionary for shortcuts
Dictionary<UsableKeys, int?> shortcutDictionary = new Dictionary<UsableKeys, int?>();
// Add a pair key/value that bind A to attack()
shortcutDictionary.Add(UsableKey.A, 1);
// Add a pair Key/value that bind B to defend()
shortcutDictionary.Add(UsableKey.B, 2);
// Now, if you press A, attack() will be called
shortcutDictionary[UsableKey.A] = 2;
// Now if you press A or B, defend() will be called
shortcutDictionary[UsableKey.B] = null;
// Now B isn't bind to any function, so only A is binded to defend();

使用此方法,您不能将多个功能绑定到一个,而可以将多个绑定到一个函数(如果要倒数,只需交换字典的键/值并调整代码以匹配此)。
我不知道这是否是这样做的最佳方法,但它不是意大利面代码,而且运行良好。

最新更新