Leser: 1
5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl
use strict;
use warnings;
use Tk;
use Tk::Pane;
my $mw = MainWindow -> new();
my $sframe = $mw -> Scrolled('Frame') -> pack(-fill => 'both', -expand => 1);
my $b1 = $sframe -> Button(-text => 'Button Nummer 1')->pack(-fill => 'both', -expand => 1);
MainLoop;
5 Einträge, 1 Seite |