gpt4 book ai didi

string - tkinter askstring 在可见性改变之前被删除

转载 作者:行者123 更新时间:2023-12-04 15:52:04 37 4
gpt4 key购买 nike

我正在尝试制作一个弹出窗口,以便有人可以在输入框中填写字符串。我已经经历了很多例子,但它不起作用。

我正在尝试:

    var_entry = simpledialog.askstring("Test", "Test")

我收到此错误消息:

_tkinter.TclError: window ".!_querystring" was deleted before its visibility changed

提前致谢!

编辑:发布了错误的错误信息

最佳答案

我知道这是一个旧线程,但我遇到了同样的问题,到目前为止还没有找到根本原因。

但是,如果其他人需要,此解决方法对我有用:

#Create a new temporary "parent"

newWin = Tk()

#But make it invisible

newWin.withdraw()

#Now this works without throwing an exception:

retVal = simpledialog.askstring("Enter Value","Please enter a value",parent=newWin)

#Destroy the temporary "parent"

newWin.destroy()

关于string - tkinter askstring 在可见性改变之前被删除,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53480400/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com