cscvrp has asked for the wisdom of the Perl Monks concerning the following question:
Thanksuse strict; use warnings; use Tk; require Tk::NoteBook; my $main = MainWindow->new( ); my $nb = $main->NoteBook(-takefocus => 0 )->pack(-expand => 1, -fill = +> 'both'); my $page1 = $nb->add('page1', -label => 'Page 1'); $page1->Entry()->pack(); $page1->Entry()->pack(); $page1->Entry()->pack(); $page1->Entry(-takefocus => 0)->pack(); $nb->add('page2', -label => 'Page 2'); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Tk::Notebook exclude tab from focus traversal
by tybalt89 (Monsignor) on Nov 26, 2018 at 08:36 UTC | |
|
Re: Tk::Notebook exclude tab from focus traversal
by beech (Parson) on Nov 27, 2018 at 02:07 UTC | |
by cscvrp (Novice) on Nov 27, 2018 at 05:25 UTC | |
|
Re: Tk::Notebook exclude tab from focus traversal
by tybalt89 (Monsignor) on Nov 26, 2018 at 21:20 UTC | |
by cscvrp (Novice) on Nov 27, 2018 at 05:28 UTC |