Первые опыты с GUI помогите пожалуйста почему то заполняется только частично Код |
use Tk; use Tk::ProgressBar; use warnings; use LWP::UserAgent; use HTTP::Cookies; use HTTP::Request::Common;
my $mw = MainWindow->new(-title => 'ProgressBar example');
$progress = $mw->ProgressBar( -width => 30, -from => 0, -to => 100, -blocks => 50, -colors => [0, 'green', 50, 'yellow' , 80, 'red'], -variable => \$percent_done )->pack(-fill => 'x');
$mw->Button(-text => 'Go!', -command=>\&getPars )->pack(-side => 'bottom');
MainLoop;
sub getPars { foreach(1...50){ $i++; $numstr++; $percent_done = $i/10; print $percent_done;
} }
|
Это сообщение отредактировал(а) BlindBandiit - 15.5.2013, 06:20
|