logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Tk::TFrame - A Titled Frame widget

Author

       Graham Barr <gbarr@pobox.com>

Description

Tk::TFrame provides a frame but with a title which overlaps the border by half of it's height.

Name

       Tk::TFrame - A Titled Frame widget

See Also

       Tk::LabFrame

Synopsis

           use Tk::TFrame;

           $frame1 = $parent->TFrame(
               -label => [ -text => 'Title' ],
               -borderwidth => 2,
               -relief => 'groove',
           );

           # or simply
           $frame2 = $parent->TFrame(
              -label => 'Title'
           );

           $frame1->pack;
           $frame2->pack;

See Also