1

我正在使用 ironpython 制作一个 winform 应用程序。我需要能够不断地轮询键盘以获取用户输入。我已经尝试了一些事情,但无法让任何工作。我在 Visual Studio 2012 工作。有没有办法进行这个键盘轮询?

4

1 回答 1

0

人们会期望使用 System.Windows.Input 中的 .net 键盘类和方法。但是,当我尝试导入该命名空间时,我只发现 ICommand 已实现。我在 IronPython 2.7.4 上。

import clr
clr.AddReference('System.Windows')
import System.Windows.Input as Input

dir(Input)

可悲的是,这只会产生:

['ICommand']

所以我想在 IronPython 中做到这一点的方法是查找 Python 的输入处理:(

于 2013-11-12T00:08:08.170 回答