Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用此代码来测试是否已按下某个键,但我还需要一个在释放键时调用的绑定。如果不存在这样的绑定,我会接受一些代码来不断检查键是否仍然被按下。
w.bind("<Key>",key)
这将onkeyrelease在任何键被释放时调用:
onkeyrelease
w.bind("<KeyRelease>", onkeyrelease)
要对特定键的释放做出反应,您可以使用
w.bind("<KeyRelease-key>", onkeyrelease_of_key)
wherekey应替换为密钥的名称。
key