The Listbox Widget
Create a listbox with the Listbox method. You can then insert items
into the listbox using the insert
method.
$parentwidget->Listbox (options)The standard configuration options that apply to Listbox are: -background, -bg, -borderwidth, -bd, -cursor, -exportselection, -font, -foreground, -fg, -height, -highlightbackground, -highlightcolor, -highlightthickness, -relief, -select-background, -selectborderwidth, -selectforeground, -takefocus, -width, -xscroll-command, and -yscrollcommand.
Other options are:
-selectmode =>modeDetermines the number of items that can be selected at once, as well as key/mouse bindings.
modecan be any of:singleOnly one item can be selected at a time.
browseOnly one item can be selected at a time (default).
multipleMultiple items can be selected at a time.
extendedMultiple items can be selected at a time.
-setgrid =>booleanTurns on gridding for the listbox. If the widget is resized, only complete lines and characters are displayed. Default is
0(off).