我写了一个小python脚本,它刚弹出一个消息框,其中包含在命令行中传递的文本。我只想在未打开窗口(由上一个呼叫产生的窗口)时才将其弹出。from Tkinter import *import tkMessageBoxroot = Tk()root.withdraw() # TODO not if a window with this title existstkMessageBox.showinfo("Key you!", " ".join(sys.argv[1:]))知道如何检查吗?
添加回答
举报
0/150
提交
取消