Help for this page

Select Code to Download


  1. or download this
    $Output_b->grid( 
            -column => 5,
    ...
            -rowspan => 6,
            -sticky => 'nsew',
                );
    
  2. or download this
    my ($cols, $rows) = $tl->gridSize();
    
    ...
    for (my $i = 0; $i < $rows; $i++) {
        $tl->gridRowconfigure($i, -weight => 1);
    }