我有一个wx python应用程序,当您单击按钮时,它会为特定输入执行一系列步骤。该应用程序第一次工作,但如果我尝试使用不同的输入值再次单击该按钮,则会抛出错误。
我有两个问题: 1.)如何修复下面的代码,以便它停止抛出此错误消息?
2.。)我应该添加哪些特定代码,以便在对话框中向最终用户显示此类错误消息?我希望它能够优雅地杀死抛出错误的整个过程(从按钮单击开始)并用新对话框替换进度条,该对话框提供错误消息并允许用户单击将要执行的按钮他们回到应用程序的主窗口,以便他们可以尝试再次单击该按钮以使其与新输入一起使用。我即将把它包装在一个exe文件中,但是现在我唯一的错误处理是python shell中的错误消息。由于用户没有python shell,我需要以本段所述的方式出现错误消息。请注意,我的OnClick()函数在这里实例化一个类。我在我的实际代码中使用了许多不同的类,每个类都非常复杂,我需要我在这里要求的功能,以便能够处理在各种类的内容深处发生的错误。由OnClick()函数实例化。
这是我的代码的一个非常简化但有效的版本:
import wxversion
import wx
ID_EXIT = 130
class MainWindow(wx.Frame):
def __init__(self, parent,id,title):
wx.Frame.__init__(self,parent,wx.ID_ANY,title, size = (500,500), style = wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
# A button
self.button =wx.Button(self, label="Click Here", pos=(160, 120))
self.Bind(wx.EVT_BUTTON,self.OnClick,self.button)
# the combobox Control
self.sampleList = ['first','second','third']
self.lblhear = wx.StaticText(self, label="Choose TestID to filter:", pos=(20, 75))
self.edithear = wx.ComboBox(self, pos=(160, 75), size=(95, -1), choices=self.sampleList, style=wx.CB_DROPDOWN)
# the progress bar
self.progressMax = 3
self.count = 0
self.newStep='step '+str(self.count)
self.dialog = None
#-------Setting up the menu.
# create a new instance of the wx.Menu() object
filemenu = wx.Menu()
# enables user to exit the program gracefully
filemenu.Append(ID_EXIT, "E&xit", "Terminate the program")
#------- Creating the menu.
# create a new instance of the wx.MenuBar() object
menubar = wx.MenuBar()
# add our filemenu as the first thing on this menu bar
menubar.Append(filemenu,"&File")
# set the menubar we just created as the MenuBar for this frame
self.SetMenuBar(menubar)
#----- Setting menu event handler
wx.EVT_MENU(self,ID_EXIT,self.OnExit)
self.Show(True)
def OnExit(self,event):
self.Close(True)
def OnClick(self,event):
#SECOND EDIT: added try: statement to the next line:
try:
if not self.dialog:
self.dialog = wx.ProgressDialog("Progress in processing your data.", self.newStep,
self.progressMax,
style=wx.PD_CAN_ABORT
| wx.PD_APP_MODAL
| wx.PD_SMOOTH)
self.count += 1
self.newStep='Start'
(keepGoing, skip) = self.dialog.Update(self.count,self.newStep)
TestID = self.edithear.GetValue()
self.count += 1
self.newStep='Continue.'
(keepGoing, skip) = self.dialog.Update(self.count,self.newStep)
myObject=myClass(TestID)
print myObject.description
self.count += 1
self.newStep='Finished.'
(keepGoing, skip) = self.dialog.Update(self.count,self.newStep)
**#FIRST EDIT: Added self.count = 0 on the following line**
self.count = 0
self.dialog.Destroy()
#SECOND EDIT: Added the next seven lines to handle exceptions.
except:
self.dialog.Destroy()
import sys, traceback
xc = traceback.format_exception(*sys.exc_info())
d = wx.MessageDialog( self, ''.join(xc),"Error",wx.OK)
d.ShowModal() # Show it
d.Destroy() #finally destroy it when finished
class myClass():
def __init__(self,TestID):
self.description = 'The variable name is: '+str(TestID)+'. '
app = wx.PySimpleApp()
frame = MainWindow(None,-1,"My GUI")
app.MainLoop()
我的实际代码很复杂,但我创建了它的虚拟版本来说明它的问题。当我第一次单击按钮时在python中运行它时,上面的代码可以正常工作。但是,如果我再次尝试单击该按钮,我会在python shell中收到以下错误消息:
Traceback (most recent call last):
File "mypath/GUIdiagnostics.py", line 55, in OnClick
(keepGoing, skip) = self.dialog.Update(self.count,self.newStep)
File "C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_windows.py", line 2971, in Update
return _windows_.ProgressDialog_Update(*args, **kwargs)
wx._core.PyAssertionError: C++ assertion "value <= m_maximum" failed at ..\..\src\generic\progdlgg.cpp(337) in wxProgressDialog::Update(): invalid progress value
第一次编辑:好的,我通过添加
回答了上面的第一个问题self.count = 0
上面
self.dialog.Destroy()
在上面的代码中。但是我在上面的代码中关于错误处理的第二个问题呢?任何人都可以帮助我吗?当然,wxpython中的错误处理是已知方法的常见问题。我将使用py2exe将此应用程序包装到exe文件中。
第二次编辑:我在上面用try:回答了我的第二个问题:除了:我已添加到上面的代码中的语句。有趣的是,这是堆栈溢出中没有人能够第一次回答我的问题。我是这种类型的编程的新手,所以很多事情我只是在他们来时接受。现在回答这个问题了。