如何知道Tk中是否已经打开具有给定标题的窗口?

我写了一个小python脚本,它刚弹出一个消息框,其中包含在命令行中传递的文本。我只想在未打开窗口(由上一个呼叫产生的窗口)时才将其弹出。


from Tkinter import *

import tkMessageBox


root = Tk()

root.withdraw() 


# TODO not if a window with this title exists

tkMessageBox.showinfo("Key you!", " ".join(sys.argv[1:]))

知道如何检查吗?


青春有我
浏览 197回答 2
2回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python