Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Tkinter Scrollbar

Introduction to Tkinter Scrollbar

Tkinter Scrollbar widget basically provides the slide controller which is used to implement the vertical scrolling widgets like the Listbox, Canvas and the Text. By using the Tkinter Scrollbar widget once can also try creating the horizontal scrollbar too on the entry widgets. Tkinter scrollbar is used to roll through the content to see the whole content vertically when the scrollbar is set to vertical or horizontal scrollbar is used in order to scroll over the content horizontally. Scrollbar() syntax will be used to get a scrollbar with the attributes: master and the option/options.

Syntax:

w=scrollbar( master, option/options, …  )

Attributes:

  • Master: This master attribute of the Tkinter scrollbar represents only the parent window
  • Option/options: The option/options attribute of the Tkinter scrollbar will have the list of option which are commonly used for the scrollbar widget. These option/options mainly be used as the key-value pairs which are separated by the commas.

Tkinter Scrollbar Widget

The most commonly used list of options for the widget are:

  • activebackground: The “activebackground” option of the Tkinter scrollbar is used to color the slider/scrollbar/arrowhead/ arrowheads/cursor symbols when the mouse/cursor point is on the scrollbar/slider.
  • Bg: The “bg” option of the Tkinter scrollbar is very much helpful in changing the background of the scroll bar/arrowheads/cursor points when the mouse/cursor point is actually not on the scroll bar/slider.
  • bd: The “bd” option of the Tkinter scrollbar is used to set the 3d borders width around the whole trough’s perimeter and also the 3d effects’ width on the slider and the mouse point/arrowhead/cursor point. By default, there will be no borders around/beside at every corner of the trough. Along with that border which is having 2 pixels which is all around the slider and the arrowheads/cursor points.
  • command: The “command” option of the Tkinter scrollbar/slider is the procedure which is also to be called every time when the scrollbar/slider is moved as needed.
  • cursor: The “cursor” option of the Tkinter scrollbar widget is to make the cursor to appear when the scrollbar is below the mouse/the cursor point.
  • elementborderwidth: The “elementborderwidth” option of the Tkinter scrollbar widget helps to adjust the border width around the slider and the arrowheads/cursor points. By default, the elementborderwidth is with the value “1”. You can add any border width using the elementborderwidth option as we needed/required.
  • highlightbackground: The “highlightbackground” option of the Tkinter scrollbar widget helps with the highlight color’s whenever the scrollbar/slider don’t have any focus.
  • highlightcolor: The”highlightcolor” option of the Tkinter scrollbar widget is used for the focus color of the highlight when the mouse point/scrollbar/slider has the focus.
  • highlightthickness: The “highlightthickness” option of the scrollbar widget useful to set the thickness of the highlight but by default, the highlight thickness value is set to 1. You can set to the value 0 in order to suppress the focus highlight’s display.
  • jump: The “jump” option of the Tkinter scrolling widget controls what to happen when the user drag/drags the slider. By default, 0 value of the jump option causes the callback command for every small slider drag. If the jump option value is set to the value 1, the callback is not called if the user doesn’t release the mouse/cursor button.
  • orient: The “orient” option helps to set the orientation as horizontal/vertical. It is like orient=HORIZONTAL OR orient =VERTICAL .
  • repeatDelay: The “repeatDelay” option helps us to control how much time the button 1 is to be held down in trough before slider moves in the specific direction repeatedly. By default, the repeating delay (repeatdelay=300) is 300 and the units are of milliseconds.
  • repeatInterval: The “repeatInterval” option is for repeating the interval of the slider.
  • takefocus: The “takefocus” option is for tabbing the focus through the scrollbar widget but one can set it with the value 0 if you don’t want this feature/behavior.
  • troughcolor: The “troughcolor” option is for changing the color of the trough.
  • width: The “width” option is to set the scrollbar/slider’s width ( x dimension is for vertical and y dimension is for horizontal). By default the width value is 16 (width=16).

Methods of Tkinter Scrollbar

These are the methods which are used with the Tkinter Scrollbar Objects:

  • get(): The get() method returns 2 numbers a and b which is used to describe the slider’s current position. The get() value gives the exact position of the edge of the slider (left or right) and also for the vertical and the horizontal scrollbars respectively but the b’s value is for the right edge’s or the bottom edge’s position.
  • set ( first1, last1 ): The set() method is to connect the scroll bar/ slider to another widget “w”. set w’s yscrollcommand or the yscrollcommand to slider/scrollbar’s set () method. These arguments have the same/similar meaning as all the values which is returned by the get() method.
  • Pack(): This method is useful to set the alignment of the slider/sidebar.

Example

The below example is about implementing the Tkinter scroll bar ( vertical scrollbar with the Right Alignment) with some functions and with the for loop to print some text 100 times from 0-99 along with the check buttons when loop values exactly divide by the value 10. Here at first, we are importing all the Tkinter functions using the import * function from the python library. Then the  “master1” and “top1”  variables are created as the first step to make the scrollbar and also the checkbuttons when needed. Now the scrollbar1  variable is created with the “Scrollbar()” syntax with the master attribute as “master1” and the option attribute “bg”.

Option attributes and variables can be changed based on our requirements from the list of all the options available. Then for the sake of the alignment pack() method is used just like the usage in the Tkinter checkbutton. The pavanlist1 variable is created to set the alignment to the right and scrollbar using “side=RIGHT” in the pack() method. Then the Listbox() widget came with the master and option attribute for the sake of set method. Listbox() is helpful to display the list of items/other as needed/required. Listbox() items are stored in the mylist1 variable. Now the loop with the range of 100 came into existence to get the values from 0-99 by running the For loop 100 times. The text below the loop which runs 100 times will be listed in the “pavanlist1” variable and also prints the checkbuttons when the loop number/value is exactly divided by 10. Then the condition will be checked to print the Tkinter checkbutton when the loop values is exactly divided by the value 10. Then the config method is used with the scrollbar’s widgets to access the object’s attributes after the initialization from the other variable etc..in order to modify the text whenever you want during the runtime process of the program.

Code:

from tkinter import *
import tkinter
top1 = tkinter.Tk()
CheckVar11 = IntVar()
master1 = Tk()
scrollbar1 = Scrollbar(master1, bg="green")
scrollbar1.pack( side = RIGHT, fill = Y )
pavanlist1 = Listbox(master1, yscrollcommand = scrollbar1.set )
for pavanline1 in range(100):
pavanlist1.insert(END, "Line Numbers are " + str(pavanline1) + " now in online ")
if pavanline1%10==0:
C11 = Checkbutton(top1,text="Line Number : " + str(pavanline1),variable = CheckVar11)
C11.pack()
pavanlist1.pack( side = LEFT, fill = BOTH )
scrollbar1.config( command = pavanlist1.yview )
mainloop()
top1.mainloop()

Output:

Recommended Articles

This is a guide to Tkinter Scrollbar. Here we discuss a brief overview on Tkinter Scrollbar Widget, attributes, and examples to demonstrate the working of Tkinter Tkinter Scrollbar. You can also go through our other suggested articles to learn more –

  1. Python Ternary Operator With Limitation
  2. How Does Python strip Function Work?
  3. Tkinter Frame With Methods
  4. Introduction to Python Tkinter Canvas

The post Tkinter Scrollbar appeared first on EDUCBA.



This post first appeared on Best Online Training & Video Courses | EduCBA, please read the originial post: here

Share the post

Tkinter Scrollbar

×

Subscribe to Best Online Training & Video Courses | Educba

Get updates delivered right to your inbox!

Thank you for your subscription

×