C# 把Keys 直接转换为键盘上得Char值

我在做超市软件前台时,原本以为写快捷键设置时没什么难度,真写到时竟然遇到了个小麻烦:

    比如我键盘上得到的是Keys 枚举类型,但是将来F1帮助窗体上确要显示成对应的char值,eg:Keys.Add 需要显示成'+'

    那用KeyPress 监听的话又监听不到F1,F2...等键,所以只能想办法将Keys 值转换为char 值

   下面是我写的类:

using System;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Text;
using System.Windows.Forms;


namespace Com.Hrtec.Tools {
        public  class KeyCharTool {
         [DllImport("user32.dll")]
        static extern int MapVirtualKey(uint uCode, uint uMapType);

        private static char KeyCodeToChar(Keys k) {


            int nonVirtualKey = MapVirtualKey((uint)k, 2);
            char mappedChar = Convert.ToChar(nonVirtualKey);
            return mappedChar;


        }
        public static string KeyCodeToStr(Keys k) {
            char mappedChar = KeyCodeToChar(k);
            string str = mappedChar.ToString();
            if (Char.IsWhiteSpace(mappedChar) || string.IsNullOrEmpty(str) || mappedChar == '\r' || mappedChar == '\n' || mappedChar == KeyCodeToChar(Keys.F1)) {
                return k.ToString();
            } else {


                return str + "";
            }
        }
    }
}

你可能感兴趣的:(c#用法技巧)