当前位置:  开发笔记 > 编程语言 > 正文

如何将字符转换为等效的System.Windows.Input.Key枚举值?

如何解决《如何将字符转换为等效的System.Windows.Input.Key枚举值?》经验,为你挑选了2个好方法。

我想写一个这样的函数,

        public System.Windows.Input.Key ResolveKey(char charToResolve)
        {
            // Code goes here, that resolves the charToResolve
            // in to the Key enumerated value
            // (For example with '.' as the character for Key.OemPeriod)

        }

我知道我可以写一个巨大的Switch-case来匹配角色,但还有其他方法吗?这个问题是Key枚举的字符串可能与字符不匹配,因此Enum.IsDefined不起作用

有任何想法吗?

更新:这是在Windows环境中



1> xcud..:
[DllImport("user32.dll")]
static extern short VkKeyScan(char ch);

static public Key ResolveKey(char charToResolve)
{
    return KeyInterop.KeyFromVirtualKey(VkKeyScan(charToResolve));
}



2> Joacim Ander..:

尝试使用System.Windows.Input.KeyConverter类的ConvertFrom方法.

推荐阅读
跟我搞对象吧
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有