本文介绍了不同语言之间的密钥转换的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在不同语言之间获取键盘键?例如。 quwerty键盘上的(A)键等于另一个键盘上的(某些字母)。我怎样才能获得该密钥。

How can I get the keyboard key between different languages? E.g. the (A) key at quwerty keyboard equals (some letter) in another keyboard. How can I get that key.

推荐答案


if(e.Key == Key.A) {
   // A was pressed
}



或者甚至像这样,


Or even like this,

if(Keyboard.IsKeyDown(Key.A)) {
   // Good thing, you can make it a complex statement, to check other key states too.
}



然后你可以得到你想要的东西。让WPF为您处理一切,只需使用此枚举并使用A键。



[]


这篇关于不同语言之间的密钥转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-26 22:44