为什么 Wish 打开两个窗口而不是一个?
在 Tcl/Tk 中,文件 /usr/bin/wan27
的源中,
#! /usr/bin/wish -f
set w .main
toplevel $w
wm title $w "FOO"
当从终端 (Linux/Debian/Ubuntu 10.04) 发出命令“wan27”时,它会打开两个窗口,其中一个窗口的标题为 wan27另一个标题是“FOO”。我只想打开 FOO 窗口。我怎样才能实现这个目标呢?
谢谢
In Tcl/Tk, the source of file /usr/bin/wan27
#! /usr/bin/wish -f
set w .main
toplevel $w
wm title $w "FOO"
when issuing the command "wan27" from terminal (Linux/Debian/Ubuntu 10.04), it opens two windows, one with the title wan27 and the other one with the title FOO. I just want the FOO window to open. How can I fulfill that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用以下内容:
Use the following:
答案是wish总是创建一个名为“.”的窗口。这就是一扇窗户。然后,您使用
toplevel
命令创建第二个窗口,因此现在您有两个窗口。The answer is that wish always creates a window named ".". So that is one window. You then create a second window with the
toplevel
command so now you have two.您还可以使用:
You can use also:
如果您想忽略
.
那么您可以隐藏它:wm iconify .
If you want to ignore
.
then you can just hide it:wm iconify .