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

Поделиться
HTML-код
  • Опубликовано: 5 сен 2024
  • 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:
    www.facebook.c...
    Instagram:
    ...
    ______________ Facebook Groups ______________
    Tkinter Hub:
    / 851151375958760
    Tkinter Help Line:
    / 1121719918417319
    #TkinterHub
    #tkinter

Комментарии • 117

  • @bucksera475
    @bucksera475 10 месяцев назад +8

    it's not often I get exactly what i look for, but this one is an exception. absolutly fantastic video. thank you

  • @juniorludima2727
    @juniorludima2727 6 месяцев назад +2

    junior from nairobi,
    exactly what i have been looking for, very helpful video, thanks a lot .

  • @welingtonalmeida1018
    @welingtonalmeida1018 Год назад +3

    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.

  • @ramthegamer5879
    @ramthegamer5879 Год назад +2

    You got a subscribe from me comrade....Keep on you hardwork, you will become famous among developers

  • @namanmittal623
    @namanmittal623 2 месяца назад

    thanks bro this helped me too much this was too easy

  • @deepee5897
    @deepee5897 Год назад +2

    Thank you this was very helpful for my assignment :)

  • @mancampovestiminvatam
    @mancampovestiminvatam Год назад +3

    Exactly what I was looking for.
    Thank you!

  • @yuniekanand301
    @yuniekanand301 5 месяцев назад +2

    Your videos are awesome it helps me very much but it will be more helpful if you could provide the source code 🙂

  • @TruongPham-ew1hs
    @TruongPham-ew1hs Год назад +1

    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

  • @anurasenarathna1703
    @anurasenarathna1703 Год назад +1

    Very informative. Great video. Thank you very much for sharing your skills.

  • @shortsvideo3802
    @shortsvideo3802 Год назад +3

    iNshallah oNe Day You Will Became A Famous RUclipsr💖🥰

  • @sawraja140
    @sawraja140 Год назад +1

    Hii sir,sir really your video is so knowledgeable please fast give us next lesson I'm wetting

    • @tkinterhub
      @tkinterhub  Год назад +1

      Welcome
      will soon.
      I am working with a big surprise.

    • @sawraja140
      @sawraja140 Год назад +1

      @@tkinterhub oh wow 😊

  • @saurabhgoyal6897
    @saurabhgoyal6897 Год назад +1

    Best Video for frames so far.Thanks

  • @RVideoR
    @RVideoR Год назад

    I am from Saudi Arabia. Thank you very much bro

  • @kingkashyap_official
    @kingkashyap_official Год назад

    Looking it for a long time but finally..... Thanks @tkinter hub

  • @zentopia2902
    @zentopia2902 Год назад +2

    That was very educational.

  • @hadervarilla1035
    @hadervarilla1035 Год назад +2

    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!

  • @sepehrtarani9127
    @sepehrtarani9127 Год назад +1

    This is very helpful, Thanks a lot🙂🙏

  • @sg8nj
    @sg8nj 6 месяцев назад +1

    Excellent💯👍👏

  • @sg-gx4sd
    @sg-gx4sd Год назад

    mate i LOVE u ty iits ny first project and your playlist is great😍

  • @Giovoish
    @Giovoish 3 месяца назад +1

    Thank you

  • @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."

  • @SofiaTimm
    @SofiaTimm 3 месяца назад

    could you use a voice changer instaed? having an actual voice talking would be a HUGE difference

  • @kotlabor
    @kotlabor Год назад

    great job 'Shokran'

  • @mcocmeliodas
    @mcocmeliodas Год назад

    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?

  • @unknown-person-14.
    @unknown-person-14. Год назад

    Its very good thank you so much

  • @danielDev-hg3jo
    @danielDev-hg3jo Год назад +1

    Excelente explicación.😀

  • @aryadifohasmi5306
    @aryadifohasmi5306 Год назад +1

    thanks a lot, very helpful

  • @sawraja140
    @sawraja140 Год назад +1

    Sir in my pycharm not work the attribute frame. Configure than what I do say me please

  • @unknown-society8037
    @unknown-society8037 Год назад +1

    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  Год назад +2

      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()

  • @someone-kw3ou
    @someone-kw3ou Год назад +1

    hey can you please create a video on how to create a mindmapping tool using python

  • @tehseenbaig3198
    @tehseenbaig3198 8 месяцев назад

    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  8 месяцев назад

      Hi dear subscriber,
      Contact me via Facebook
      I will help out:
      facebook.com/loop.while.79?mibextid=mqjNyhXYnDq2O9au

  • @abcde7515
    @abcde7515 Год назад

    I'm your 1000 .subscriber

    • @tkinterhub
      @tkinterhub  Год назад

      Welcome Dear Subscriber
      I hope Here you will learn a lot

  • @ragheedmaloyan3730
    @ragheedmaloyan3730 Год назад +1

    Great!

  • @souravjana6587
    @souravjana6587 Год назад

    Really interesting ! Where can we find the coding in a whole ????

    • @tkinterhub
      @tkinterhub  Год назад

      Thanks, but sorry we can't provide source code.

  • @furjackgaming
    @furjackgaming 6 месяцев назад +1

    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  6 месяцев назад

      Hi Dear Subscriber,
      Sure i will help you
      Contact me via Facebook:
      facebook.com/loop.while.79

  • @chandrashekhar5961
    @chandrashekhar5961 Год назад +1

    Thanks

  • @prumchhangsreng979
    @prumchhangsreng979 7 месяцев назад

    best thing ever

  • @SureshKumar.23
    @SureshKumar.23 5 месяцев назад

    Super

  • @CodingWorld-be7qh
    @CodingWorld-be7qh Год назад +1

    Thank you soooo much

  • @superstars427
    @superstars427 Год назад

    Thank you so much

  • @joelpereira4719
    @joelpereira4719 Год назад

    Can you sent de code pls. Nice video, thank you for the information

  • @ALESHAKAN
    @ALESHAKAN Год назад

    Looks like creating some website

  • @shortsvideo3802
    @shortsvideo3802 Год назад +1

    Keep it up 😊❤️

  • @aysegulyilmaz7310
    @aysegulyilmaz7310 Год назад +1

    how do I let it land on home page automatically? so if I run the code it shows home page

    • @tkinterhub
      @tkinterhub  Год назад +2

      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 Год назад +1

      @@tkinterhub thank you sm this worked!:)

  • @cryptic_art612
    @cryptic_art612 Год назад

    Thanks a lot...😃

  • @abdolabdollah1783
    @abdolabdollah1783 Год назад

    Thanks.

  • @-Rania-
    @-Rania- 5 месяцев назад

    what is fonction "page ()" for ?

  • @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."

  • @user-vb2pn2zv1f
    @user-vb2pn2zv1f 10 месяцев назад

    in which python version is this
    because in the line with main_frame.configure(width=500, heigth=400) is an error

  • @drissacoulibaly8443
    @drissacoulibaly8443 Год назад

    thank you

  • @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... 😅 😅 😅

  • @medmounishak4125
    @medmounishak4125 Год назад

    hi thak you for this video it was so helpful
    i want to ask you can i have this code please

  • @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  Год назад

      Hi Dear Subscriber
      I suggest you to watch this video for solve image not showing in function:
      ruclips.net/video/LV_icM-1XFs/видео.html

    • @tkinterhub
      @tkinterhub  Год назад

      Otherwise
      Contact me via Facebook, I will help out:
      facebook.com/loop.while.79

    • @muditpalvadi1857
      @muditpalvadi1857 Год назад

      @@tkinterhub tha ka man really appreciated

  • @DRogeryt
    @DRogeryt 8 месяцев назад

    Could u pls tell me how to merge this code with my main application code pls reply asap

    • @tkinterhub
      @tkinterhub  8 месяцев назад

      Hi dear subscriber,
      Contact me via Facebook
      I will help you to merge this code with your program:-
      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

  • @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

  • @rihanreloaded6244
    @rihanreloaded6244 Год назад

    Brother use your voice instead of this it will better.sometimes we. Can't understand and get tried of it

    • @tkinterhub
      @tkinterhub  Год назад

      Dear Subscriber
      I appreciate your suggestion
      Maybe in the future i will use my own voice.

  • @Myself_Yash
    @Myself_Yash Год назад

    How to import image rather than main page content

  • @user-pm3wu1de8d
    @user-pm3wu1de8d Год назад

    what does lb stands for or what does it mean? pls

  • @syedmumer2348
    @syedmumer2348 7 месяцев назад

    Can we get the source code?

  • @chityinoo6150
    @chityinoo6150 7 месяцев назад

    where can i get source code??

  • @HiwaHossien
    @HiwaHossien 8 месяцев назад +1

    give me source code

  • @jonathanvioleta3578
    @jonathanvioleta3578 10 месяцев назад +1

    source code 🙂

  • @ytreniizakat
    @ytreniizakat Год назад

    pls project

    • @tkinterhub
      @tkinterhub  Год назад +1

      Dear Subscriber
      We have Created 5 projects already
      Check Out Channel Playlist Section.
      New projects we will Create Soon.

  • @waynermoncada2777
    @waynermoncada2777 Год назад

    Thank you

  • @vhhub
    @vhhub Год назад +1

    thanks