- or download this
$parent->Widget(
-background => ...,
...
-padX => ...,
-padY => ...,
)
- or download this
$parent->Widget()
- or download this
-optionA => valueA, -optionb => valueB, -optionC => valueC
- or download this
qw{-optionA valueA -optionb valueB -optionC valueC}
- or download this
qw{-option1 value 1 ... -optionN valueN -command}, sub { ... }
- or download this
...
sub _std_btn_pack_opts () {
...
...
$parent->Button(...)->pack(_std_btn_pack_opts);
...
- or download this
$parent->Button(...)->pack(_std_btn_pack_opts, -anchor => 'n', -side =
+> 'right');
- or download this
my $frame = $parent->Frame()->pack(); # NEEDED
...
$status1->configure(-text => $new_statmsg1);
},
)->pack(); # NOT NEEDED