Aishu has asked for the wisdom of the Perl Monks concerning the following question:

Hi all, I would like to know how to set a background color for a page added in the Tk::Notebook. I found options only for adding colors to backpage of Tk::Notebook. Please help me find a solution. Thanks, Aishu
  • Comment on How to set background color to a page in Tk::Notebook?

Replies are listed 'Best First'.
Re: How to set background color to a page in Tk::Notebook?
by lamprecht (Friar) on Apr 06, 2011 at 07:29 UTC
    $tk_notebook->add() returns a Tk::Frame which understands configure(-bg => 'aColor')
    Hth, Christoph
      It helped a lot. Thank you Christoph.. Regards, Aishu