Add files via upload

This commit is contained in:
blueShard-dev
2020-06-28 11:15:51 +00:00
committed by GitHub
parent b8e3072563
commit bc65ff575d
31 changed files with 6762 additions and 0 deletions

View File

@ -0,0 +1,22 @@
from tkinter import *
root = Tk()
frame = Frame(root)
frame.pack()
bottomframe = Frame(root)
bottomframe.pack( side = BOTTOM )
redbutton = Button(frame, text="Red", fg="red")
redbutton.pack( side = LEFT)
greenbutton = Button(frame, text="green", fg="green")
greenbutton.pack( side = LEFT )
bluebutton = Button(frame, text="Blue", fg="blue")
bluebutton.pack( side = LEFT )
blackbutton = Button(bottomframe, text="Black", fg="black")
blackbutton.pack( side = BOTTOM)
root.mainloop()