in reply to change color of text box in Perl/Tk
$txtbox = $textParent->Text(...)->pack(); ... $cbtnParent->Checkbutton(-variable => \$txtboxColor, -text => 'Set textbox color', -offvalue => 'gray', -onvalue => 'white', -command => sub {$txtbox->configure(-backgrou +nd => $txtboxColor)} )->pack(); # (or whatever geometry mgmt you'r +e using)
|
|---|