web-dev-qa-db-ja.com

tkinterでイベントハンドラに引数を渡す方法は?

_widget.bind('<Button-1>',callback)   # binding 

def callback(self,event)
    #do something
_

callback()に引数を渡す必要があります。引数は辞書オブジェクトです。

27
sag

lambda を使用して、次のような無名関数を定義できます。

data={"one": 1, "two": 2}

widget.bind("<ButtonPress-1>", lambda event, arg=data: self.on_mouse_down(event, arg))

渡されたargは、他のすべての引数と同じように使用できる通常の引数になることに注意してください。

def on_mouse_down(self, event, arg):
    print(arg)
41
Bryan Oakley

どうですか

import functools
def callback(self, event, param):
    pass
arg = 123
widget.bind("", functools.partial(callback, param=arg))
10
Philipp

コールバックはインスタンスメンバーにアクセスできるインスタンスメソッドである可能性があるため、ほとんどの場合、コールバックへの引数は必要ないと思います。

from Tkinter import *

class MyObj:
    def __init__(self, arg):
        self.arg = arg

    def callback(self, event):
        print self.arg

obj = MyObj('I am Obj')
root = Tk()
btn=Button(root, text="Click")
btn.bind('<Button-1>', obj.callback)
btn.pack()
root.mainloop()

でも、フィリップが提案したfunctoolsソリューションもとてもいいと思います

4
luc

コールバック関数をインスタンスに渡し、インスタンスメソッドから呼び出します。

from tkinter import *

class MyClass:

    def __init__(self, my_callback, message):
        self.my_callback = my_callback
        self.message = message

    def callback(self, event):
        self.my_callback(self)

def my_callback(o):
    print(o.message)


obj = MyClass(my_callback, "I am instance of MyClass")

root = Tk()

btn=Button(root, text="Click")
btn.bind('<Button-1>', obj.callback)
btn.pack()
1
Iordanov K.

これが私が考えるすべての最も簡単で読みやすい解決策です:

widget.bind('<Button-1>', callback2)

def callback(self, event, custom_arg=None): #change "None" to whatever you want the default value to be
    #do something

def callback2(self, event):
    callback(event, custom_arg=something_you_set) #set custom_arg to whatever you want it to be when Button-1 is pressed
1
Gabriel Staples

このウィジェットがクラス定義の一部として定義されている場合に限り、ウィジェットのコールバック関数に引数を指定することもできます。つまり、この小さなpython 2.7プログラム(プログラムの実行に関与する部分なし):

import Tkinter as tk #To be able to get "tk.Button" safely
from Tkinter import *

class EXAMPLE(Frame):
    def __init__(self,master=None):
        Frame.__init__(self,master)

        #make the widgets appear to a grid of size = 2 X 2
        for row in range(2):
            self.grid_rowconfigure(row,minsize=20)
        for col in range(2):
            self.grid_columnconfigure(col,minsize=20)

        #Call our METHOD OF INTEREST
        self.AnyMethod()

    #This is our method of interest
    def AnyMethod(self):
        #arguments to be supplied
        self.arg1 = 'I am 1st argument'
        self.arg2 = 'I am 2nd argument'
        self.arg3 = 'I am 3rd argument'

        #Draw the widget, & supply its callback method
        self.widgetname=tk.Button(self.master,text="My Button",command=self.method_callback)
        self.widgetname.grid(row=0,column=0)

    #create a so-called 'Shell method' to swallow the REAL callback function
    def method_callback(self):
        func_callback(self.arg1,self.arg2,self.arg3)

#Define the REAL callback function in the Module's scope
def func_callback(arg1,arg2,arg3):
    print arg1
    print arg2
    print arg3

注意指定された引数はself.で続行する必要があります

0
Serag Hassouna