widget.bind('<Button-1>',callback) # binding
def callback(self,event)
#do something
i need to pass an argument to callback() .the argument is a dictionary object.
thanks in advance
sag
|
|
You can use lambda to define an anonymous function, such as:
Edit in response to a question in the comments: The arg passed in becomes just a normal argument that you use just like all other arguments:
|
|||||||||
|
|
What about
|
|||
|
I think that in most cases you don't need any argument to a callback because the callback can be an instance method which can access the instance members:
But I think the functools solution proposed by Philipp is also very nice |
||||
|
|