perl/tk的右上角关闭叉叉(关闭按钮)如何屏蔽?

perl/tk的右上角关闭叉叉(关闭按钮)如何屏蔽?

perl/tk的右上角关闭叉叉(关闭按钮)如何屏蔽?

perl/tk的右上角关闭叉叉(关闭按钮)如何屏蔽?

主要是避免user随意中止程序,在Solaris中倒只剩下最大与最小按钮,
而在Linux(GNome及KDE)环境中却多了个这个叉叉...

how to disable it ? thank you!
没人回...?...
好像没有办法,...
好像没有办法,但你可以重载窗口关闭的消息,然后不去关闭窗口就行了。
[quote]回复给 ...
[quote]回复给 chinaonly : 好像没有办法,......[/quote]

Could you tell me more details ? thank you very much~
use Tk;--$ro...
use Tk;
$root = MainWindow->new();
$root->protocol(WM_DELETE_WINDOW,sub{return -1});
$root->MainLoop();
Oh, yeah, it i...
Oh, yeah, it is OK now!

[b]protocol(WM_DELETE_WINDOW,sub{return -1});[/b]

i haven't see this function before, where can you find it ?chinaonly!

Thank you very much!




   

Perl Tk 的文档...
Perl Tk 的文档里面有(perl/html/site/tk/wm.html),我是以前看书知道的,是一本Tcl/Tk的书。
在Hoowa以前的网站的论坛上也看到过,有人提过类似的问题!