Understanding scrolling in tkinter

This video covers the basics of scrolling in tkinter. You can use scrolling with the canvas, the text and the treeview widget.
You can get the code here:
github.com/clear-code-project...

Пікірлер: 26

  • @darrylmabalot8699
    @darrylmabalot86994 ай бұрын

    your is much simpler than the other vid I watched, THANKS!!!!

  • @carlozdel3580
    @carlozdel35806 ай бұрын

    The best video about Tkinter scrollbar. Thank you very much!!!!

  • @vineetvishwakarma4584
    @vineetvishwakarma45844 ай бұрын

    Thanks a lot for this crystal clear explanation. You made my day…

  • @kalla103
    @kalla103 Жыл бұрын

    thank you for this video! it's clear and to the point

  • @thomasoreilly6140
    @thomasoreilly61403 ай бұрын

    This is such a good video. Thank you!

  • @ammarmohsen1471
    @ammarmohsen14718 ай бұрын

    Very wonderful explanation, thank you very much

  • @user-ts6vi2pr3h
    @user-ts6vi2pr3h6 ай бұрын

    Um milhão de likes para vc. Adorei a explicação!

  • @felixw8004
    @felixw80048 ай бұрын

    university level explanation skills

  • @janlochman1985

    @janlochman1985

    6 ай бұрын

    More than. Some uni teachers are tragic.

  • @zhenghuluo
    @zhenghuluoАй бұрын

    Thx a lot for this great video. And I have a question: What IDE do you use? How do you select the same word in different lines and edit them simultaneously? You selected three "scrollbar" in three lines and change them to "scrollbar_text" with one typing. It feels like a magic to me. I'm using Pycharm on Windows. Could you teach me with it? Thx a lot!

  • @James-xx2nf
    @James-xx2nf Жыл бұрын

    this is an exceptional explanation, ty. I tried to imitate this in my app and it worked well. In making a scrollbar for a canvas, how can i make it work with tk buttons, ttk option menus...that have the parents/master specified as the canvas ? canvas lines, images work well with scrolling, but the other ones(buttons...) 👆🏾 remain static during scrolling

  • @janlochman1985

    @janlochman1985

    6 ай бұрын

    I dont understand your question well, but yview probably doesnt work on all types of widgets. It probably works on Canvas, Text, and Listbox. Have a look into documentation.

  • @grayfox8547
    @grayfox8547Ай бұрын

    7:30

  • @wildergomez9181
    @wildergomez91813 ай бұрын

    thanks for the video, had a question, are canvas the same as LabelFrame ?

  • @wildergomez9181

    @wildergomez9181

    3 ай бұрын

    Frame *

  • @GrafBazooka
    @GrafBazooka3 ай бұрын

    if you want to place buttons and widgets it doesn't work

  • @philipjdry1234
    @philipjdry12346 ай бұрын

    Can you scroll bar a group of labels and entries?

  • @janlochman1985

    @janlochman1985

    6 ай бұрын

    I think yview doesnt work on these widget, so the answer woudl be no.

  • @philipjdry1234

    @philipjdry1234

    6 ай бұрын

    @@janlochman1985 thank you. There is a lot in one group but in another group there is plenty of space, I think I'll just move them over so they fit on screen

  • @BugMagnet

    @BugMagnet

    3 ай бұрын

    Allegedly you can put a frame on a canvas, put your widget on that frame and then scroll the canvas. But when I tried it, the frame remained in place.

  • @Deepjinsi
    @Deepjinsi Жыл бұрын

    How to add whole program in it I tried but scrollbar moving but program not moving

  • @Deepjinsi

    @Deepjinsi

    Жыл бұрын

    If any 1 have solution let me know asap

  • @Deepjinsi

    @Deepjinsi

    Жыл бұрын

    Thanx I fix it my self now perfectly working now

  • @dabutz21

    @dabutz21

    8 ай бұрын

    how did you fix it? When i scroll, the i can see that the yview changes because of the diagonal line that is put there. but when i place widgets, they are always there . i can't scroll away from them. Did you have the same issue? If yes, how did you fix it? @@Deepjinsi

  • @slyryan5550
    @slyryan555011 ай бұрын

    I love u

  • @ntcov
    @ntcov Жыл бұрын

    Hey, man, this helps a lot. Although, I am not looking for a window. How would I put the scrolling menu on a screen with pygame? Some details: I am working on a cookie-clicker clone, and I have buildings that you can purchase for cookies. But as of right now, they are just separated on UI on the side of the screen. I want it to be in a single UI that can scroll through the buildings (and still purchase the building when clicked). Can you help me out?