Answers for "can i click button with enter tkinter"

2

tkinter execute function on enter

def func(event):
    print("You hit return.")
    
root.bind('<Return>', func)
Posted by: Guest on March-12-2021

Code answers related to "can i click button with enter tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language