#!/usr/bin/perl use strict; # https://perlmonks.org/?node_id=11114006 use warnings; use Tk; use Tk::DialogBox; my $mw = MainWindow->new; $mw->geometry( '300x300+600+300' ); my $G = $mw->DialogBox( -popover => undef, -popanchor => 'nw', -overanchor => 'nw'); $G->minsize(650,680); $G->maxsize(650,680); $mw->Button(-text => 'Open Dialog Box', -command => sub { $G->Show }, )->pack; MainLoop;
In reply to Re^3: Tk window location Win 7
by tybalt89
in thread Tk window location Win 7
by Anonymous Monk
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |