-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathfirstGUI.py
More file actions
26 lines (19 loc) · 671 Bytes
/
firstGUI.py
File metadata and controls
26 lines (19 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
__author__ = 'Avinash'
from tkinter import *
root = Tk()
topFrame = Frame(root)
topFrame.pack(side=TOP)
middleFrame = Frame(root)
middleFrame.pack(side=RIGHT)
bottomFrame = Frame(root, bg="green")
bottomFrame.pack(side=BOTTOM)
topFrame_Label = Label(topFrame, text="Welcome to Python GUI(Top Frame)")
topFrame_Label.pack()
middleFrame_Label = Label(middleFrame, text="Welcome to Python GUI(Middle Frame)")
middleFrame_Label.pack()
bottomFrame_Label = Label(bottomFrame, text="Welcome to Python GUI(Bottom Frame)")
bottomFrame_Label.pack()
theButton = Button(bottomFrame, text="Button", fg="red", bg="black")
theButton.pack()
root.minsize(400, 400)
root.mainloop()