in reply to Problem with Tk::Repeat
The only time you need to address the scrollbars as separate widgets, is if you want to position them manually from within the program, or have dual linked scrollbars. But even then, you can get the bar from the subwidget method.my $box = $mw->Scrolled('Listbox', -scrollbars => 'osoe', #only show bars if needed -relief => 'sunken', -height => 5, -setgrid => 0, );
my $xscrollbar = $scrolled_box->Subwidget('xscrollbar');
|
|---|