8 lines
145 B
Plaintext
8 lines
145 B
Plaintext
|
;; Basic listbox widget
|
||
|
|
||
|
(pack (listbox '.list))
|
||
|
|
||
|
(.list 'insert 'end "First list item"
|
||
|
"Second list item"
|
||
|
"Third list item")
|