Answers for "how to add buttons in tkinter"

2

how to find the text inside button in tkinter

my_text = my_button.cget('text')
Posted by: Guest on March-21-2020
0

add button python

from tkinter import *


master = Tk()

#program you want the button to execute
def closewindow():
    exit()

#set up button
button = Button(master, text="close window", command=closewindow)

button.pack()

mainloop()
Posted by: Guest on July-06-2020
0

buttons on canvas tkinter

# ... snip ...
button1 = Button(self, text = "Quit", command = self.quit, anchor = W)
button1.configure(width = 10, activebackground = "#33B5E5", relief = FLAT)
button1_window = canvas1.create_window(10, 10, anchor=NW, window=button1)
Posted by: Guest on April-20-2020

Code answers related to "how to add buttons in tkinter"

Python Answers by Framework

Browse Popular Code Answers by Language