Leser: 1
5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl
use strict;
use warnings;
use Tk;
my $mw = new MainWindow(-background => undef);
$mw->overrideredirect(1); # Fensterdekoration ausschalten;
$mw->Label(-text => "Hallo Welt")->pack();
MainLoop();
5 Einträge, 1 Seite |