217k views
5 votes
What method is used in the following line of code to associate clicking the left button with the event handler "clickSingle"?

widget._____(' ', clickSingle)


eventHandler
eventHandler

attach
attach

connect
connect

bind

User Qmacro
by
4.1k points

1 Answer

5 votes

Answer:

Bind

Step-by-step explanation:

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

User Abada Henno
by
3.8k points