In the following block, clicking on a_frame
triggers the event handler on_frame_click
, but clicking on a_label
which is a child of a
Based on what it says in the Levels of Binding section of this online Tkinter reference, it sounds like it's possible because you can bind a handler to three different levels.
To summarize:
For the details please refer to the first link.
Hope this helps.