Pack Right : Layout « GUI « Perl






Pack Right

 

#!/usr/bin/perl -w

use Tk;


$side = "right";

$Tk::strictMotif = 1;

$main = MainWindow->new();

$button1 = $main->Button(-text => "Button 1",
                         -command => \&exit_button);

$button1->pack(-side=>$side);

$button2 = $main->Button(-text => "Button 2",
                         -command => \&exit_button);

$button2->pack(-side=>$side);

$button3 = $main->Button(-text => "Button 3",
                         -command => \&exit_button);

$button3->pack(-side=>$side);

MainLoop();

sub exit_button {
    print "You pushed the button!\n";
    exit;
}

   
  








Related examples in the same category

1.Pack controls on a window
2.Pack left, right, both
3.Using pack to control widget placement
4.Using place method to set control location
5.Control the fill
6.Layout control: fill
7.Layout controls: Pack to the top
8.Pack Bottom
9.Pack Left
10.Pack Top
11.Adding radio buttom to Frame
12.Relayout(pack) the controls