Help for this page

Select Code to Download


  1. or download this
             -------------------------------------
    Chooser: |  Foo  (how to make this white?) |V|
    ...
                | Bar                           |
                | Bas                           |
                ---------------------------------
    
  2. or download this
    #!/usr/bin/perl
    use strict;
    ...
    #What else can I configure to a different color??
    
    MainLoop;
    
  3. or download this
    my $dd = $mw->BrowseEntry(
       -label       => 'Chooser',
    ...
       -disabledforeground => '#000000',
       -disabledbackground => '#FFFFFF',
    )->pack();