Add list box to a window : Listbox « GUI « Perl






Add list box to a window

   
use Tk;

$main = MainWindow->new();

$listbox1 = $main->Listbox("-width" => 25, 
    "-height" => 5
)->pack;

   
    
    
  








Related examples in the same category

1.Bind double click action to the list box
2.Insert value to list box
3.Using Scroll Bar to control a list box
4.Fill data to a list box