【问题标题】:Autohotkey: What is the keycode for for the following keysAutohotkey:以下键的键码是什么
【发布时间】:2018-04-04 09:38:37
【问题描述】:

我使用自动热键编程,我知道(C)键码是{VK43},(X)键码是{VK58}。 我想知道以下键的代码:([),(]),(`),('),(,),(.)and(/) 提前致谢

【问题讨论】:

    标签: c# c keyboard autohotkey


    【解决方案1】:

    你可以自己找出来

    foreach (var ch in "CX[]`',./")
    {
        Console.WriteLine(ch + " " + ((int)ch).ToString("X2"));
    }
    

    【讨论】:

      猜你喜欢
      • 2015-02-10
      • 2016-08-31
      • 1970-01-01
      • 2013-11-21
      • 2013-03-20
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多