我浏览了大约十几篇关于Tkinter,绑定按键事件和画布小部件的帖子,但我读到的解决方案都没有改变我程序中的任何内容。 GUI当前使用Button-1作为事件,但我需要它可以通过键盘操作。我尝试使用各种键和字母表的字母。我也尝试过self.c.focus_set(),当我尝试将事件绑定到画布或框架时,它不起作用。这是我的代码:
from Tkinter import *
class App:
def __init__(self, master):
self.parent = master
frame = Frame(master)
screen_width, screen_height = master.winfo_screenwidth(), master.winfo_screenheight()
frame.configure(background='black')
frame.place(x=0,y=0,width=screen_width,height=screen_height)
master.overrideredirect(1)
h = .8*screen_height
self.c = Canvas(frame, width=h, height=h, bd=0, highlightthickness=0, bg='black')
self.c.place(relx=0.5, rely=0.5, anchor=CENTER)
radius = 10
self.c.update_idletasks()
hCanvas = (self.c.winfo_height())
offset = int(float(.4*hCanvas))
self.c.create_oval(hCanvas/2-radius, hCanvas/2-radius, hCanvas/2+radius, hCanvas/2+radius, fill='white', outline='white')
self.c.focus_set()
self.c.update_idletasks()
self.c.bind('<Key>', lambda event, arg=[radius]: self.create_stim(event, arg))
def create_stim(self, event, args):
print('create stim')
if __name__ == "__main__":
root = Tk()
root.attributes('-fullscreen', True)
app=App(root)
root.update()
root.mainloop()
提前感谢您的帮助!
目前,当我以这种方式运行程序时,我不再全屏,我无法点击窗口选择它,每次按键盘上的键时都会出现错误噪音。如果我在app = App(root)之后放了root.attributes(' - fullscreen',True),那么我全屏显示GUI,我可以点击它,每次按下一个键时再次得到错误噪音。 我的计算机上运行的python(2.7.10)版本是否有问题(MacBook Pro,运行在OS X Yosemite,10.10.4)?我应该下载python 3吗?
答案 0 :(得分:0)
这似乎是Tkinter对OSX的限制。当您致电master.overrideredirect(1)
时,它似乎关闭了tkinter处理键盘事件的能力。如果省略对overrideredirect
的调用,您的代码将开始工作。