Skip to content
Advertisement

Tag: scrollbar

How to make a scrollable listbox? tkinter python

I want to create a listbox with an auto hiding scrollbar. I’ve been searching and found a class example; when I play around with it, the scrollbar doesn’t stayed attached to the right side as expected. This is the code: This is the first view when I run the code: When I expand the window the scrollbar disappears properly: But

How to insert scrollbar into canvas filled with buttons?

I’m trying to insert a scrollbar into a canvas filled with buttons (where, buttons can be switched to clickable text as well). With the code below, the window seems OK. However, when I uncomment the lines with the scrollbar, the window geometry scrambles. Can anybody give a hand to figure out what’s wrong with the code? System: Windows 10, python

Kivy ScrollView code error with scrollbars (or bug?)

I’m playing around with a Kivy Scrollview, adding scrollbars, etc, and getting a strange crash. I don’t specifically think it’s a bug, it’s probably some configuration element on Scrollviews that I’m missing, but who knows? Given this code: if I click or touch the Scrollbars in any way, I get this error: However – if I first click the bitmap

How to update a frame with a scrollbar linked in it that has buttons so that it updates and works correctly when adding buttons?

I’m writing an application in tkinter which has the following structure: Notebook Tab (frame on the notebook) Canvas (on the frame) SecondFrame (on the canvas) ← this is where I want to pack my buttons MyButtons (on second frame) While scrollbar is linked as expected to my canvas. Lets say I have 20 buttons when running the program and by

Tkinter scrollbar for frame

My objective is to add a vertical scroll bar to a frame which has several labels in it. The scroll bar should automatically enabled as soon as the labels inside the frame exceed the height of the frame. After searching through, I found this useful post. Based on that post I understand that in order to achieve what i want,

Advertisement