Help for this page

Select Code to Download


  1. or download this
    my $rb1 = $frame->Radiobutton(
        -variable=>\$output_select,
    ...
        -value=>'template',
        -text=>'Generate Template',
    ) ->pack(-side=>'right');
    
  2. or download this
    # Data structure to control 'hideable' regions
    # 
    ...
    ];
    
    assign_hideable_widgets($a_reveal);
    
  3. or download this
    sub assign_hideable_widgets {
        my ($a_reveal) = @_;
    ...
            $rb->bind("<Button-1>" => sub { $c_hide->($rb) });
        }
    }