#!/bin/sh
# \
	exec itkwish -f "$0" ${1+"$@"}

option add *textBackground white

selectionbox .sb -items {Hello {Out There} World} 
pack .sb -padx 10 -pady 10 -fill both -expand yes 

set cs [label [.sb childsite].label -text "Child Site"]
pack $cs -fill x -padx 10 -pady 10

.sb insert items 2 {Cruel Cruel}

.sb selection set 1
