in reply to Re: Border-less main window
in thread Border-less main window
However, when you do that, you may end up with no (easy) way to shutdown your GUI.
well, I imagine whatever your window manager shortcuts are still work, on onwin32 its Alt+F4 and it works to close the window
Hitting ctrl+c (if you used perl.exe) in the console also QUITS it :) Terminating on signal SIGINT(2)
But yeah, if you're going this route you should add a exit button, I prefer one that doesn't call exit :)
$mw->Button( qw/-text Exit -command / => [ $mw, q/destroy/ ] );
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Border-less main window (Alt+F4 Ctrl+C
by kcott (Archbishop) on Jul 15, 2013 at 11:44 UTC | |
by Anonymous Monk on Jul 15, 2013 at 12:33 UTC |