1

ユーザーがカーソルのフォーカスをエントリ ウィジェットから別のエントリ ウィジェット、ボタンなどの任意の場所に変更したときにイベントを生成できるようにするコードを作成しています...

これまでのところ、TAB とマウス クリックにバインドするというアイデアしか思い浮かびませんでしたが、マウス クリックを Entry ウィジェットにバインドすると、Entry ウィジェット内でのみマウス イベントが取得されます。

ウィジェットがカーソルのフォーカスを失ったときにイベントを生成するにはどうすればよいですか?

前もって感謝します!

4

2 に答える 2

5

イベント <FocusIn> および <FocusOut> は、必要なものです。次の例を実行すると、エントリ ウィジェットの 1 つにフォーカスがあるときに、クリックするかタブ (または 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を使用してウィンドウでマウスクリックを検出する

私はかなり長い間tkinterを行っていませんが、「FocusIn」および「FocusOut」イベントがあるようです。これらをバインドして追跡し、問題を解決できる場合があります。

から: http://effbot.org/tkinterbook/tkinter-events-and-bindings.htm

于 2008-10-17T07:12:44.113 に答える