FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
programminginpython.com/firstGUI.py at master · anilkumarreddyn/programminginpython.com · GitHub
anilkumarreddyn
/
programminginpython.com
Public
forked from
avinashn/programminginpython.com
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
programminginpython.com
/
firstGUI.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
26 lines (19 loc) · 671 Bytes
Breadcrumbs
programminginpython.com
/
firstGUI.py
Copy path
File metadata and controls
26 lines (19 loc) · 671 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
()
Back
|
FazBrowse Home
|
New Git URL