to create Tkinter button the code is :
from tkinter import *
root = Tk()
label = Label(root, text="label")
label.pack()
Button1 = Button(root, text="Button")
Button1.pack()
root.mainloop()
button1 = variable
https://github.com/Sarveshprasath/Button-Tkinter
No comments:
Post a Comment