Tkinter Listbox



The Listbox widget is used to display a list of items from which a user can select a number of items.

Syntax

Here is the simple syntax to create this widget −

w = Listbox ( master, option, ... )

Parameters

  • master − This represents the parent window.

  • options − Here is the list of most commonly used options for this widget. These options can be used as key-value pairs separated by commas.

Sr.No. Options & Description
1

Bg

The normal background color displayed behind the label and indicator.

2

Bd

The size of the border around the indicator. Default is 2 pixels.

3

Cursor

The cursor that appears when the mouse is over the listbox.

4

Font

The font used for the text in the listbox.

5

Fg

The color used for the text in the listbox.

6

Height

Number of lines (not pixels!) shown in the listbox. Default is 10.

7

Highlightcolor

Color shown in the focus highlight when the widget has the focus.

8

Highlightthickness

Thickness of the focus highlight.

9

Relief

Selects three-dimensional border shading effects. The default is SUNKEN.

10

Selectbackground

The background color to use displaying selected text.

11

Selectmode

Determines how many items can be selected, and how mouse drags affect the selection −

  • BROWSE − Normally, you can only select one line out of a listbox. If you click on an item and then drag to a different line, the selection will follow the mouse. This is the default.

  • SINGLE − You can only select one line, and you can't drag the mouse.wherever you click button 1, that line is selected.

  • MULTIPLE − You can select any number of lines at once. Clicking on any line toggles whether or not it is selected.

  • EXTENDED − You can select any adjacent group of lines at once by clicking on the first line and dragging to the last line.

12

Width

The width of the widget in characters. The default is 20.

13

Xscrollcommand

If you want to allow the user to scroll the listbox horizontally, you can link your listbox widget to a horizontal scrollbar.

14

Yscrollcommand

If you want to allow the user to scroll the listbox vertically, you can link your listbox widget to a vertical scrollbar.

Methods

Methods on listbox objects include −

Sr.No. Options & Description
1

activate ( index )

Selects the line specifies by the given index.

2

curselection()

Returns a tuple containing the line numbers of the selected element or elements, counting from 0. If nothing is selected, returns an empty tuple.

3

delete ( first, last=None )

Deletes the lines whose indices are in the range [first, last]. If the second argument is omitted, the single line with index first is deleted.

4

get ( first, last=None )

Returns a tuple containing the text of the lines with indices from first to last, inclusive. If the second argument is omitted, returns the text of the line closest to first.

5

index ( i )

If possible, positions the visible part of the listbox so that the line containing index i is at the top of the widget.

6

insert ( index, *elements )

Insert one or more new lines into the listbox before the line specified by index. Use END as the first argument if you want to add new lines to the end of the listbox.

7

nearest ( y )

Return the index of the visible line closest to the ycoordinate y relative to the listbox widget.

8

see ( index )

Adjust the position of the listbox so that the line referred to by index is visible.

9

size()

Returns the number of lines in the listbox.

10

xview()

To make the listbox horizontally scrollable, set the command option of the associated horizontal scrollbar to this method.

11

xview_moveto ( fraction )

Scroll the listbox so that the leftmost fraction of the width of its longest line is outside the left side of the listbox. Fraction is in the range [0,1].

12

xview_scroll ( number, what )

Scrolls the listbox horizontally. For the what argument, use either UNITS to scroll by characters, or PAGES to scroll by pages, that is, by the width of the listbox. The number argument tells how many to scroll.

13

yview()

To make the listbox vertically scrollable, set the command option of the associated vertical scrollbar to this method.

14

yview_moveto ( fraction )

Scroll the listbox so that the top fraction of the width of its longest line is outside the left side of the listbox. Fraction is in the range [0,1].

15

yview_scroll ( number, what )

Scrolls the listbox vertically. For the what argument, use either UNITS to scroll by lines, or PAGES to scroll by pages, that is, by the height of the listbox. The number argument tells how many to scroll.

Example

Try the following example yourself −

from tkinter import *

top = Tk()

Lb1 = Listbox(top)
Lb1.insert(1, "Python")
Lb1.insert(2, "Perl")
Lb1.insert(3, "C")
Lb1.insert(4, "PHP")
Lb1.insert(5, "JSP")
Lb1.insert(6, "Ruby")

Lb1.pack()
top.mainloop()

When the above code is executed, it produces the following result −

tkinter listbox
python_gui_programming.htm
Advertisements