programming-examples/perl/GUI/Pack Right.pl
2019-11-15 12:59:38 +01:00

32 lines
603 B
Perl

#!/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;
}