Leser: 1
|< 1 2 3 4 5 >| | 43 Einträge, 5 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use strict;
use Tk;
my $MamaGUI = new MainWindow;
my $windowWidth = "200";
my $screenHeight = $MamaGUI->screenheight;
my $screenWidth = $MamaGUI->screenwidth;
# MamaGUI rechts andocken
$MamaGUI->geometry($windowWidth."x".$screenHeight);
$MamaGUI->geometry("+" . int($screenWidth - $windowWidth) . "+" . int(1) . "");
# damits keinen Rahmen mehr gibt
$MamaGUI->overrideredirect(1);
MainLoop();
1
2
$mw->transient(0); // für toplevel hab ich anstatt 0 das handel zum papafenster übergeben...
$mw->focusForce();
1
2
$mw->transient(0); // für toplevel hab ich anstatt 0 das handel zum papafenster übergeben...
$mw->focusForce();
|< 1 2 3 4 5 >| | 43 Einträge, 5 Seiten |