1

我正在构建一个代码,当用户将光标的焦点从一个条目小部件更改为任何地方时,我希望能够在其中生成一个事件,例如另一个条目小部件,一个按钮......

到目前为止,我只提出了绑定到 TAB 和鼠标单击的想法,尽管如果我将鼠标单击绑定到 Entry 小部件,我只会在 Entry 小部件内获得鼠标事件。

当小部件失去光标焦点​​时,如何完成生成事件?

提前致谢!

4

2 回答 2

5

<FocusIn> 和 <FocusOut> 事件是您想要的。运行以下示例,当焦点位于其中一个条目小部件中时,无论您单击还是按 Tab(或 shift-tab),您都会看到焦点输入和输出绑定。

from Tkinter import *

def main():
    global text

    root=Tk()

    l1=Label(root,text="Field 1:")
    l2=Label(root,text="Field 2:")
    t1=Text(root,height=4,width=40)
    e1=Entry(root)
    e2=Entry(root)
    l1.grid(row=0,column=0,sticky="e")
    e1.grid(row=0,column=1,sticky="ew")
    l2.grid(row=1,column=0,sticky="e")
    e2.grid(row=1,column=1,sticky="ew")
    t1.grid(row=2,column=0,columnspan=2,sticky="nw")

    root.grid_columnconfigure(1,weight=1)
    root.grid_rowconfigure(2,weight=1)

    root.bind_class("Entry","<FocusOut>",focusOutHandler)
    root.bind_class("Entry","<FocusIn>",focusInHandler)

    text = t1
    root.mainloop()

def focusInHandler(event):
    text.insert("end","FocusIn %s\n" % event.widget)
    text.see("end")

def focusOutHandler(event):
    text.insert("end","FocusOut %s\n" % event.widget)
    text.see("end")


if __name__ == "__main__":
    main();
于 2008-10-22T13:56:48.647 回答
0

这不是 tkinter 特有的,也不是基于焦点的,但我在这里得到了类似问题的答案:

使用python检测Windows中的鼠标点击

我很长一段时间没有做过任何 tkinter,但似乎有“FocusIn”和“FocusOut”事件。您也许可以绑定和跟踪这些以解决您的问题。

来自: http ://effbot.org/tkinterbook/tkinter-events-and-bindings.htm

于 2008-10-17T07:12:44.113 回答