3 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict;
use warnings 'all';
use Tk;
my $mw = tkinit();
my $radio = $mw->Radiobutton(-text => "Radiobutton");
$mw->Button(-text => "Radiobutton einblenden",
-command => sub { $radio->pack })->pack;
$mw->Button(-text => "Radiobutton ausblenden",
-command => sub { $radio->packForget })->pack;
MainLoop;
3 Einträge, 1 Seite |