Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: A question regarding Perl::Tk, pack

by graff (Chancellor)
on Mar 30, 2016 at 01:11 UTC ( [id://1159065]=note: print w/replies, xml ) Need Help??


in reply to A question regarding Perl::Tk, pack

The sample code posted by beech above shows how to use "pack" to get four panes arranged in the 2x2 pattern you want.

But personally, for this sort of thing, I'd use the "grid" geometry manager:

#!/usr/bin/perl use strict; use warnings; use Tk qw/tkinit/; my $mw = Tk::MainWindow->new; my $topleft = $mw->Pane(qw'-bg pink' )->grid(qw/ -column 0 -row 0 / +); my $topright = $mw->Pane(qw'-bg purple' )->grid(qw/ -column 1 -row 0 / +); my $botleft = $mw->Pane(qw'-bg green' )->grid(qw/ -column 0 -row 1 / +); my $botright = $mw->Pane(qw'-bg orange' )->grid(qw/ -column 1 -row 1 / +); $mw->MainLoop;
So, what did you actually try that was different from either of these two examples?

Replies are listed 'Best First'.
Re^2: A question regarding Perl::Tk, pack
by Shumkar (Novice) on Mar 30, 2016 at 06:31 UTC
    Yeah, it is easier. I just couldn't understand how to do it with pack...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1159065]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (7)
As of 2024-04-19 11:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found