5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
sub Button {
my( $parent, $text, $command, %options ) = @_;
ref $text
? $options{-textvariable} = $text
: $options{-text} = $text;
ref $command
? $options{-command} = $command
: $options{-background} = '#ff0000';
return $parent->Button(
-background => '#ffdd00',
-font => $MyApp::Config::DefaultFont,
...
%options,
);
}
1
2
3
4
$mw->optionAdd("*Balloon.background", '#C0C080', 'startupFile'); # für allgemeine Widgets
# für Widgets, die einen bestimmten Namen haben, mit Name => ... angegeben
$mw->optionAdd("*search*foreground" => 'yellow4');
$mw->optionAdd("*search*text" => "Suchen");
5 Einträge, 1 Seite |