Skip to content
Advertisement

How can I pass the TKinter button/label that triggered a bind to a function which that bind calls?

I hope someone can help with this. I’m new to coding and wanted to try doing some GUI stuff in Python with TKinter. In one of my projects, I want any button that the mouse hovers over to change it’s background color. However I don’t want to define a function for every single button. Here is an example:

JavaScript

Now of course I could go and make a function for every button to change it’s background color when the bind for that specific button calls that function. But is there a way to pass the button that triggered the bind to the function that the bind calls ?

My example works, if I explicitly put the button I want to change in the bind like this:

JavaScript

But I thought there must be a more elegant way to fix this other than make a bind/function for every single button which gets really annyoing when I have a program with more than only 4 buttons.

I hope someone has any advice :)

Advertisement

Answer

When you bind an event to a function, that function will be called with an object representing the event. This object has an attribute widget which is the widget that received the event. You don’t need to do anything else to get the widget.

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement