-
Notifications
You must be signed in to change notification settings - Fork 1
/
Multiple Page by OOP.py
210 lines (144 loc) · 6.9 KB
/
Multiple Page by OOP.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#;=============================================================
#; Title: Multiple page handeling in object oriented apporach
#; Author: @AyemunHossain
#;=============================================================
import tkinter as tk
class MainClass(tk.Tk):
def __init__(self,*args,**kwargs):
#Initialize the TK
tk.Tk.__init__(self,*args,**kwargs)
container=tk.Frame(self)
container.pack(side="top",fill="both",expand=True)
container.grid_rowconfigure(0,weight=1)
container.grid_columnconfigure(0, weight=1)
self.frames={}
for F in (PageHome,PageProfile,PageTimeline,PageAbout,PageLike,PageSecurity):
frame = F(container, self)
self.frames[F] = frame
frame.grid(row=0, column=0, sticky="news")
self.show_frame(PageHome)
def show_frame(self, cont):
frame = self.frames[cont]
frame.tkraise()
class PageHome(tk.Frame):
def __init__(self,parent,container):
tk.Frame.__init__(self,parent)
label1 = tk.Label(self,text = "Welcome \n Wish you have FUN! :) ")
label1.pack(pady=50,padx=5)
button1 = tk.Button(self, text="Profile", width=10, command=
lambda:container.show_frame(PageProfile))
button1.pack()
button2 = tk.Button(self, text="Timeline", width=10, command=
lambda:container.show_frame(PageTimeline))
button2.pack()
button3 = tk.Button(self, text="Likes", width=10, command=
lambda:container.show_frame(PageLike))
button3.pack()
button4 = tk.Button(self, text="Security", width=10, command=
lambda:container.show_frame(PageSecurity))
button4.pack()
button5 = tk.Button(self, text="About", width=10, command=
lambda:container.show_frame(PageAbout))
button5.pack()
class PageProfile(tk.Frame):
def __init__(self,parent,container):
tk.Frame.__init__(self,parent)
label1 = tk.Label(self, text="Your Profile !!!!")
label1.pack(pady=50,padx=5)
button1 = tk.Button(self, text="Home", width=10, command=
lambda:container.show_frame(PageHome))
button1.pack()
button2 = tk.Button(self, text="About", width=10, command=
lambda:container.show_frame(PageAbout))
button2.pack()
button3 = tk.Button(self, text="Timeline", width=10, command=
lambda:container.show_frame(PageTimeline))
button3.pack()
button4 = tk.Button(self, text="Likes", width=10, command=
lambda:container.show_frame(PageLike))
button4.pack()
button5 = tk.Button(self, text="Security", width=10, command=
lambda:container.show_frame(PageSecurity))
button5.pack()
class PageAbout(tk.Frame):
def __init__(self,parent,container):
tk.Frame.__init__(self,parent)
label1 = tk.Label(self, text="About Yourself :) ")
label1.pack(pady=50,padx=5)
button1 = tk.Button(self, text="Profile", width=10, command=
lambda:container.show_frame(PageProfile))
button1.pack()
button2 = tk.Button(self, text="Home", width=10, command=
lambda:container.show_frame(PageHome))
button2.pack()
button3 = tk.Button(self, text="Timeline", width=10, command=
lambda:container.show_frame(PageTimeline))
button3.pack()
button4 = tk.Button(self, text="Likes", width=10, command=
lambda:container.show_frame(PageLike))
button4.pack()
button5 = tk.Button(self, text="Security", width=10, command=
lambda:container.show_frame(PageSecurity))
button5.pack()
class PageTimeline(tk.Frame):
def __init__(self,parent,container):
tk.Frame.__init__(self,parent)
label1 = tk.Label(self, text="Your recent Posts : ")
label1.pack(pady=50,padx=5)
button1 = tk.Button(self, text="Profile", width=10, command=
lambda:container.show_frame(PageProfile))
button1.pack()
button2 = tk.Button(self, text="About", width=10, command=
lambda:container.show_frame(PageAbout))
button2.pack()
button3 = tk.Button(self, text="Likes", width=10, command=
lambda:container.show_frame(PageLike))
button3.pack()
button4 = tk.Button(self, text="Security", width=10, command=
lambda:container.show_frame(PageSecurity))
button4.pack()
button5 = tk.Button(self, text="Home", width=10, command=
lambda:container.show_frame(PageHome))
button5.pack()
class PageLike(tk.Frame):
def __init__(self,parent,container):
tk.Frame.__init__(self,parent)
label1 = tk.Label(self, text="Things you have liked :) ")
label1.pack(pady=50,padx=5)
button1 = tk.Button(self, text="Profile", width=10, command=
lambda:container.show_frame(PageProfile))
button1.pack()
button2 = tk.Button(self, text="Timeline", width=10, command=
lambda:container.show_frame(PageTimeline))
button2.pack()
button3 = tk.Button(self, text="About", width=10, command=
lambda:container.show_frame(PageAbout))
button3.pack()
button4 = tk.Button(self, text="Security", width=10, command=
lambda:container.show_frame(PageSecurity))
button4.pack()
button5 = tk.Button(self, text="Home", width=10, command=
lambda:container.show_frame(PageHome))
button5.pack()
class PageSecurity(tk.Frame):
def __init__(self,parent,container):
tk.Frame.__init__(self,parent)
label1 = tk.Label(self, text="Security Issues Here")
label1.pack(pady=50,padx=5)
button1 = tk.Button(self, text="Profile", width=10, command=
lambda:container.show_frame(PageProfile))
button1.pack()
button2 = tk.Button(self, text="Timeline", width=10, command=
lambda:container.show_frame(PageTimeline))
button2.pack()
button3 = tk.Button(self, text="Likes", width=10, command=
lambda:container.show_frame(PageLike))
button3.pack()
button4 = tk.Button(self, text="About", width=10, command=
lambda:container.show_frame(PageAbout))
button4.pack()
button5 = tk.Button(self, text="Home", width=10, command=
lambda: container.show_frame(PageHome))
button5.pack()
app=MainClass()
app.mainloop()