programming-examples/perl/GUI/Call Text insert function to add text to a Text control.pl

18 lines
264 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
use Tk;
$main = MainWindow->new();
$main->Button( -text => "Click Me!",
-command => \&display
)->pack;
$text1 = $main->Text ('-width'=> 40, '-height' => 2
)->pack;
sub display
{
$text1->insert('end', "Hello!");
}
MainLoop;