tkinter是/否必须回答的消息框

时间:2017-11-03 14:41:37

标签: python python-3.x tkinter

如何显示一个消息框,阻止用户点击另一个tkinter窗口中的任何内容,直到点击是/否。

1 个答案:

答案 0 :(得分:1)

尝试使用此代码段开始:

import Tkinter
import tkMessageBox

app = Tkinter.Tk()

choice = tkMessageBox.askquestion("Yes/No", "Are you sure?", icon='warning')
print('User chosen: {}'.format(choice))

app.mainloop()