I have a menu bar with code:
How can I change the color from the standard windows grey to anything I want? I tried putting -background in there, but it never works correctly... And if I do get the menu bar color changed, how can I change the elements like roll over bg color to change when I select menu items...
Thanks!
Code:
$main_win->configure(-menu => my $menubar = $main_win->Menu);
my $file = $menubar->cascade(-label => '~File');
$file->command(-label => 'Test', -command => \&test);
$file->command(-label => 'Exit', -command => \&exit);
Thanks!