Switch Pages in Tkinter | Switch Frames in Tkinter | Switch Multiple Pages in Tkinter

  Рет қаралды 78,305

Tkinter Hub

Tkinter Hub

Жыл бұрын

Switch pages in modern tkinter gui | Switch Pages in Tkinter | Switch Frames in Tkinter | Switch Multiple Pages in Tkinter
switch tkinter frames | switch tkinter pages | switch tkinter multiple frames | tkinter pages | tkinter multiple pages application | tkinter frames
Copyright Disclaimer Under Section 107 of the
Copyright Act 1976, allowance is made for 'Fair Use'
for purposes such as criticism, comment, news
reporting, teaching, scholarship, and research,
Fair use is a permitted by copyright statute that might
otherwise be infringing,
Non-profit, educational or personal use tips the
balance in favor of fair use.
______________ Tkinter Projects Playlists ______________
Login System Project:
• Login System in Tkinter
Registration System Project:
• Registration System Pr...
Student Registration System:
• Student Registration S...
Tkinter Game Project:
• Tkinter Game Project
Calculator Project:
• Calculator Project
______________ Social Links ______________
Facebook:
profile.php?...
Instagram:
tkinterhub?igsh...
______________ Facebook Groups ______________
Tkinter Hub:
/ 851151375958760
Tkinter Help Line:
/ 1121719918417319
#TkinterHub
#tkinter

Пікірлер: 117
@bucksera475
@bucksera475 7 ай бұрын
it's not often I get exactly what i look for, but this one is an exception. absolutly fantastic video. thank you
@saurabhgoyal6897
@saurabhgoyal6897 Жыл бұрын
Best Video for frames so far.Thanks
@juniorludima2727
@juniorludima2727 4 ай бұрын
junior from nairobi, exactly what i have been looking for, very helpful video, thanks a lot .
@namanmittal623
@namanmittal623 20 күн бұрын
thanks bro this helped me too much this was too easy
@zentopia2902
@zentopia2902 Жыл бұрын
That was very educational.
@mancampovestiminvatam1281
@mancampovestiminvatam1281 Жыл бұрын
Exactly what I was looking for. Thank you!
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@ramthegamer5879
@ramthegamer5879 Жыл бұрын
You got a subscribe from me comrade....Keep on you hardwork, you will become famous among developers
@tkinterhub
@tkinterhub Жыл бұрын
Welcome, thank you so much
@kotlabor
@kotlabor Жыл бұрын
great job 'Shokran'
@anurasenarathna1703
@anurasenarathna1703 Жыл бұрын
Very informative. Great video. Thank you very much for sharing your skills.
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@kingkashyap_official
@kingkashyap_official Жыл бұрын
Looking it for a long time but finally..... Thanks @tkinter hub
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@sg-gx4sd
@sg-gx4sd 11 ай бұрын
mate i LOVE u ty iits ny first project and your playlist is great😍
@tkinterhub
@tkinterhub 11 ай бұрын
Happy coding
@deepee5897
@deepee5897 Жыл бұрын
Thank you this was very helpful for my assignment :)
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@welingtonalmeida1018
@welingtonalmeida1018 Жыл бұрын
Incredible!!! I'm from Brazil and I Was lokking for this tutorial for a long time and I did not found. I had to search out of here.. Thank you so much.
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@sg8nj
@sg8nj 3 ай бұрын
Excellent💯👍👏
@yuniekanand301
@yuniekanand301 3 ай бұрын
Your videos are awesome it helps me very much but it will be more helpful if you could provide the source code 🙂
@shortsvideo3802
@shortsvideo3802 Жыл бұрын
iNshallah oNe Day You Will Became A Famous KZbinr💖🥰
@tkinterhub
@tkinterhub Жыл бұрын
Thank You ❤So Much❤
@ragheedmaloyan3730
@ragheedmaloyan3730 Жыл бұрын
Great!
@TruongPham-ew1hs
@TruongPham-ew1hs Жыл бұрын
Very nice, thank god i've found you, this is exactly what i need right now. Thank you very much
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@TruongPham-ew1hs
@TruongPham-ew1hs Жыл бұрын
@@tkinterhub sorry i have a wonder ------ def home_page(): home_frame = Frame(main_frame) lb = Label(home_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb01 = Label(home_frame, text="Hello word", font=("Times New Roman", 15)) lb.place(x=150, y=250) lb01.place(x=150, y=300) home_frame.pack() ______ in this function i see you use pack() to place position of lb, and i tried to use place(x=, y=) to fix its specific position, but it's not works, can you show me how to use place in this sentence
@tkinterhub
@tkinterhub Жыл бұрын
Hi If you want to place widgets in home_frame you need to propagate home_frame Here is Example: def home_page(): home_frame = tk.Frame(main_frame) lb = Label(home_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb2 = Label(home_frame, text="Hello word", font=("Times New Roman", 15)) lb.place(x=150, y=250) lb2.place(x=150, y=300) home_frame.pack() # here changes home_frame. pack_propagate(False) home_frame.config(width=500, height=400)
@TruongPham-ew1hs
@TruongPham-ew1hs Жыл бұрын
@@tkinterhub i tried to imitate you like this: ----- def home_page(): home_frame = Frame(main_frame) lb = Label(home_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb.place(x=150, y=100) home_frame.pack_propagate(False) home_frame.config(width=500, height=400) ----- but it still not working, i tride simple way like this, and it works ----- lb = Label(main_frame, text="Phạm Đình Cát Trường", font=("Times New Roman", 20)) lb.place(x=50, y=100) ---- i don't know why your way doesn't work
@tkinterhub
@tkinterhub Жыл бұрын
Come inbox me via Facebook I will help out facebook.com/loop.while.79
@RVideoR
@RVideoR Жыл бұрын
I am from Saudi Arabia. Thank you very much bro
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@Giovoish
@Giovoish Ай бұрын
Thank you
@sepehrtarani9127
@sepehrtarani9127 Жыл бұрын
This is very helpful, Thanks a lot🙂🙏
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@abcde7515
@abcde7515 Жыл бұрын
I'm your 1000 .subscriber
@tkinterhub
@tkinterhub Жыл бұрын
Welcome Dear Subscriber I hope Here you will learn a lot
@shortsvideo3802
@shortsvideo3802 Жыл бұрын
Keep it up 😊❤️
@tkinterhub
@tkinterhub Жыл бұрын
Inshahall
@danielDev-hg3jo
@danielDev-hg3jo Жыл бұрын
Excelente explicación.😀
@tkinterhub
@tkinterhub Жыл бұрын
Thanks
@chandrashekhar5961
@chandrashekhar5961 Жыл бұрын
Thanks
@superstars427
@superstars427 Жыл бұрын
Thank you so much
@hadervarilla1035
@hadervarilla1035 Жыл бұрын
Thanks for the video, I have a question... How can I introduce an image into the main side for each option? Grettings from Colombia help me!
@vhhub
@vhhub Жыл бұрын
thanks
@prumchhangsreng979
@prumchhangsreng979 4 ай бұрын
best thing ever
@aryadifohasmi5306
@aryadifohasmi5306 Жыл бұрын
thanks a lot, very helpful
@tkinterhub
@tkinterhub Жыл бұрын
Thank You
@unknown-person-14.
@unknown-person-14. Жыл бұрын
Its very good thank you so much
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@abdolabdollah1783
@abdolabdollah1783 Жыл бұрын
Thanks.
@SureshKumar.23
@SureshKumar.23 3 ай бұрын
Super
@sawraja140
@sawraja140 Жыл бұрын
Hii sir,sir really your video is so knowledgeable please fast give us next lesson I'm wetting
@tkinterhub
@tkinterhub Жыл бұрын
Welcome will soon. I am working with a big surprise.
@sawraja140
@sawraja140 Жыл бұрын
@@tkinterhub oh wow 😊
@mcocmeliodas
@mcocmeliodas 11 ай бұрын
thx for the video , but if you keep clicking on the buttons the message will show there is any way to even if you keep clicking won't happen?
@cryptic_art612
@cryptic_art612 Жыл бұрын
Thanks a lot...😃
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@SofiaTimm
@SofiaTimm 25 күн бұрын
could you use a voice changer instaed? having an actual voice talking would be a HUGE difference
@someone-kw3ou
@someone-kw3ou Жыл бұрын
hey can you please create a video on how to create a mindmapping tool using python
@sawraja140
@sawraja140 Жыл бұрын
Sir in my pycharm not work the attribute frame. Configure than what I do say me please
@CodingWorld-be7qh
@CodingWorld-be7qh 11 ай бұрын
Thank you soooo much
@tkinterhub
@tkinterhub 11 ай бұрын
Welcome
@unknown-person-14.
@unknown-person-14. Жыл бұрын
"In the tapestry of life, every thread has a purpose. Even the darkest moments add depth and beauty to the overall design. Embrace the interplay of light and shadow, for it is in the contrast that we find the true essence of existence."
@tkinterhub
@tkinterhub Жыл бұрын
Nice
@ALESHAKAN
@ALESHAKAN Жыл бұрын
Looks like creating some website
@drissacoulibaly8443
@drissacoulibaly8443 Жыл бұрын
thank you
@tkinterhub
@tkinterhub Жыл бұрын
Welcome
@joelpereira4719
@joelpereira4719 Жыл бұрын
Can you sent de code pls. Nice video, thank you for the information
@unknown-society8037
@unknown-society8037 Жыл бұрын
Hi, thanks for the video but there's something I want to ask... How can I set the home frame as a parent frame, I don't really know how to put it but I want the home frame to show up instead of the blank frame
@tkinterhub
@tkinterhub Жыл бұрын
Hi For land on Home Page when program start Use indicate function which we are creating in video Here Example: indicate(home_indicate, home_page) Put this function in end of code and above of root.mainloop()
@souravjana6587
@souravjana6587 10 ай бұрын
Really interesting ! Where can we find the coding in a whole ????
@tkinterhub
@tkinterhub 10 ай бұрын
Thanks, but sorry we can't provide source code.
@medmounishak4125
@medmounishak4125 Жыл бұрын
hi thak you for this video it was so helpful i want to ask you can i have this code please
@Myself_Yash
@Myself_Yash Жыл бұрын
How to import image rather than main page content
@-Rania-
@-Rania- 3 ай бұрын
what is fonction "page ()" for ?
@furjackgaming
@furjackgaming 4 ай бұрын
Sir plz help when I create a entry in home and enter something in it and if press about or any other option frame and go back to home the entry is empty what to do sir plz help
@tkinterhub
@tkinterhub 4 ай бұрын
Hi Dear Subscriber, Sure i will help you Contact me via Facebook: facebook.com/loop.while.79
@unknown-person-14.
@unknown-person-14. Жыл бұрын
"Embrace the storms of life, for within them lie the winds of change and the seeds of growth. It is through facing adversity that we discover the strength and resilience that dwells within us, propelling us towards our true potential."
@tkinterhub
@tkinterhub Жыл бұрын
Nince
@anthonybadmus6234
@anthonybadmus6234 Жыл бұрын
Please how can i display the output of a function on a specific frame?
@tkinterhub
@tkinterhub Жыл бұрын
Contact me via Facebook: facebook.com/loop.while.79
@alexandragromova5597
@alexandragromova5597 Жыл бұрын
And what if insstead of text I have to import another frame??HELP
@tkinterhub
@tkinterhub Жыл бұрын
Contact me via Facebook: facebook.com/loop.while.79
@aysegulyilmaz7310
@aysegulyilmaz7310 Жыл бұрын
how do I let it land on home page automatically? so if I run the code it shows home page
@tkinterhub
@tkinterhub Жыл бұрын
Use indicate function which we are creating in video For land on page when program start Example: indicate(home_indicate, home_page) Put this function in end of code and above of root.mainloop()
@aysegulyilmaz7310
@aysegulyilmaz7310 Жыл бұрын
@@tkinterhub thank you sm this worked!:)
@tehseenbaig3198
@tehseenbaig3198 5 ай бұрын
i have a question, my interface is working but pages frame are not shown. i have followed all code but I cant show any frame when the button is clicked, need help
@tkinterhub
@tkinterhub 5 ай бұрын
Hi dear subscriber, Contact me via Facebook I will help out: facebook.com/loop.while.79?mibextid=mqjNyhXYnDq2O9au
@user-vb2pn2zv1f
@user-vb2pn2zv1f 8 ай бұрын
in which python version is this because in the line with main_frame.configure(width=500, heigth=400) is an error
@howardalien2720
@howardalien2720 7 ай бұрын
python 3.9
@DRogeryt
@DRogeryt 5 ай бұрын
Could u pls tell me how to merge this code with my main application code pls reply asap
@tkinterhub
@tkinterhub 5 ай бұрын
Hi dear subscriber, Contact me via Facebook I will help you to merge this code with your program:- facebook.com/loop.while.79
@user-pm3wu1de8d
@user-pm3wu1de8d Жыл бұрын
what does lb stands for or what does it mean? pls
@jonathanvioleta3578
@jonathanvioleta3578 8 ай бұрын
its just a parameter you can rename it any you want..
@tkinterhub
@tkinterhub 8 ай бұрын
Right
@rihanreloaded6244
@rihanreloaded6244 11 ай бұрын
Brother use your voice instead of this it will better.sometimes we. Can't understand and get tried of it
@tkinterhub
@tkinterhub 11 ай бұрын
Dear Subscriber I appreciate your suggestion Maybe in the future i will use my own voice.
@muditpalvadi1857
@muditpalvadi1857 Жыл бұрын
I have put a picture using canvas in a frame, but when I turn it into function and call it, then picture disappears. Please tell me the solution if you could find one
@tkinterhub
@tkinterhub 11 ай бұрын
Hi Dear Subscriber I suggest you to watch this video for solve image not showing in function: kzbin.info/www/bejne/gofCmpaDYpaLfNU
@tkinterhub
@tkinterhub 11 ай бұрын
Otherwise Contact me via Facebook, I will help out: facebook.com/loop.while.79
@muditpalvadi1857
@muditpalvadi1857 11 ай бұрын
@@tkinterhub tha ka man really appreciated
@sarthaksingh7570
@sarthaksingh7570 Жыл бұрын
pls tell me why is ur window title color blue how???
@tkinterhub
@tkinterhub Жыл бұрын
! Hi Yes you can change your window title bar colour from Settings If you are in Windows 10 or ..7 etc Go To Settings > Select Personalization Options > Select Colors Option (From Left hand side Menu) Then You will see a Windows Colour menu
@sarthaksingh7570
@sarthaksingh7570 Жыл бұрын
@@tkinterhub thanks for that ur gui r cool and i have subscribed ur channel... I always wait for ur new video because u make very nice gui... I am just 15 yes old but inspired that I can do something with programming.... Love ur contents and Love #tkinter u can alps use the module customtkinter for best customisation in tkinter its also coll which can be used with tkinter code as well... 😅 😅 😅
@chityinoo6150
@chityinoo6150 5 ай бұрын
where can i get source code??
@syedmumer2348
@syedmumer2348 4 ай бұрын
Can we get the source code?
@ytreniizakat
@ytreniizakat Жыл бұрын
pls project
@tkinterhub
@tkinterhub Жыл бұрын
Dear Subscriber We have Created 5 projects already Check Out Channel Playlist Section. New projects we will Create Soon.
@jonathanvioleta3578
@jonathanvioleta3578 8 ай бұрын
source code 🙂
@HiwaHossien
@HiwaHossien 5 ай бұрын
give me source code
@waynermoncada2777
@waynermoncada2777 11 ай бұрын
Thank you
@tkinterhub
@tkinterhub 11 ай бұрын
Welcome
Create Toggle Menu Using Tkinter | Toggle Menu in Tkinter
17:56
Tkinter Hub
Рет қаралды 24 М.
How to Pass Data between Multiple Windows in Tkinter
18:19
CodersLegacy
Рет қаралды 26 М.
Khóa ly biệt
01:00
Đào Nguyễn Ánh - Hữu Hưng
Рет қаралды 20 МЛН
МАМА И STANDOFF 2 😳 !FAKE GUN! #shorts
00:34
INNA SERG
Рет қаралды 3,7 МЛН
Василиса наняла личного массажиста 😂 #shorts
00:22
Денис Кукояка
Рет қаралды 9 МЛН
Make Tkinter Look 10x Better in 5 Minutes (CustomTkinter)
4:40
TurbineThree
Рет қаралды 238 М.
The Linux Experience
31:00
Bog
Рет қаралды 341 М.
Tkinter - Switch Frames
31:20
JobinPy
Рет қаралды 8 М.
Making another pickproof lock (but better)
15:14
Works By Design
Рет қаралды 2,7 МЛН
Oxford University Mathematician REACTS to "Animation vs. Math"
26:19
Tom Rocks Maths
Рет қаралды 2 МЛН
Python Tkinter GUI Application With Multiple Pages | Switch Pages in Tkinter | Tkinter Pagination
42:33
Modern Tkinter GUIs with Themes - Modern Python GUI
6:07
Code First with Hala
Рет қаралды 75 М.
Собери ПК и Получи 10,000₽
1:00
build monsters
Рет қаралды 1,6 МЛН