我想绑定按钮并按下回车键。
我使用的是Python 3。
这是我的代码:
class MakeaButton(object):
def sizedButton(self, root, x, y):
f = Frame(self.root, width = 100, height = 35)
f.pack_propagate(0)
f.place(x = x, y = y)
self.btn = Button(f, text = 'Button', command = self.destroy)
self.btn.pack(fill = BOTH, expand = 1)
def background(self):
def close_onclick():
sys.exit()
self.root = Tk()
self.root.geometry('1160x640')
self.sizedButton(self.root, 530, 450)
self.root.mainloop()
def destroy(self):
self.root.destroy()
我想让我的代码在我按下按钮时以及当焦点在按钮上时按下输入键时销毁窗口。
我该怎么做?
答案 0 :(得分:0)
使用bind()
:
def sizedButton(self, root, x, y):
f = Frame(self.root, width = 100, height = 35)
f.pack_propagate(0)
f.place(x = x, y = y)
self.btn = Button(f, text = 'Button', command = self.destroy)
self.btn.pack(fill = BOTH, expand = 1)
self.btn.bind("<Button-1>", lambda e, b: self.destroy()) # for click
self.btn.bind("<Return>", lambda e, b: self.destroy()) # for return