Questions tagged [tkinter.scrollbar]

The Scrollbar Interface

In Tkinter, the Scrollbar is a separate widget that can be attached to any widget that support the standard scrollbar interface. Such widgets include:

  • the Listbox widget.
  • the Text widget.
  • the Canvas widget
  • the Entry widget
4 questions
97
votes
3 answers

Adding a scrollbar to a group of widgets in Tkinter

I am using Python to parse entries from a log file, and display the entry contents using Tkinter and so far it's been excellent. The output is a grid of label widgets, but sometimes there are more rows than can be displayed on the screen. I'd like…
Simon Hibbs
  • 5,941
  • 5
  • 26
  • 32
6
votes
2 answers

tkinter put scrollbar on canvas at bottom position

Question on scrollbar positions on my tkinter canvas. I have a frame with 3 canvas widgets. Courtesy to this post for the idea. I added a horizontal scrollbar and each canvas has a 50+ column 500+ row pandas dataframe. The load is not very fast but…
2
votes
1 answer

Python tkinter use canvas to create dynamically window with scroll bar

My objective is to solve the problem of the grid exceeding the window(shown as figure.1) enter image description here My program function is creating a grid that number of columns defined by user. I tried using canvas to solve this problem, but it…
葉泓緯
  • 23
  • 3
-1
votes
1 answer

Using tk.Scrollbar to update images in tk.canvas

I developed a small tkinter GUI to display (and export) images stored in a proprietary format. I managed to load the data into a 3D numpy uint8 array. I want to display one slice of that 3D array in a tkinter.canvas. To do so I used…