1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
# Entry for entering numeric values.
#!/usr/local/bin/perl -w
use strict;
use Tk;
use Tk::NumEntry;
use strict;
my $mw = Tk::MainWindow->new;
my $nume = $mw->NumEntry( -command => sub { print "Value = ",@_,"\n" });
$nume->pack(-side => 'top', -fill => 'x');
$nume = $mw->NumEntry(
-minvalue => 10,
-maxvalue => 100,
-defaultvalue => -2,
-command => sub { print "Value = ",@_,"\n" }
);
$nume->pack(-side => 'top', -fill => 'x');
$nume = $mw->NumEntry(
-readonly => 1,
);
$nume->pack(-side => 'top', -fill => 'x');
Tk::MainLoop;
__END__
|