作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我创建了一个 wxPython 应用程序,它在对话框窗口中显示一些消息。在单击对话框确定按钮之前,应用程序需要强制销毁对话框窗口。我使用 wx.lib.delayedresult 进行销毁调用。
我的代码是:
import wx
dlg=wx.MessageDialog(somewindow,'somemessage')
from wx.lib.delayedresult import startWorker
def _c(d):
dlg.EndModal(0)
dlg.Destroy()
def _w():
import time
time.sleep(1.0)
startWorker(_c,_w)
dlg.ShowModal()
当我收到以下错误消息时,这可以执行我想执行的操作:
(python:15150): Gtk-CRITICAL **: gtk_widget_destroy: assertion `GTK_IS_WIDGET (widget)' failed
如何在不单击对话框按钮的情况下“安全地”销毁对话框?
最佳答案
自从我使用 wxWidgets 以来已经有一段时间了,但我认为你的 dlg.Destroy() 可能在错误的地方。尝试将其移至主线程。
import wx
dlg=wx.MessageDialog(somewindow,'somemessage')
from wx.lib.delayedresult import startWorker
def _c(d):
dlg.EndModal(0)
def _w():
import time
time.sleep(1.0)
startWorker(_c,_w)
dlg.ShowModal()
dlg.Destroy()
关于python - 我如何安全地销毁 wxPython 应用程序的对话窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7354266/
我是一名优秀的程序员,十分优秀!