In wxPython what is the difference between event.Skip() and event.Veto()?
问题 I have a NOTEBOOK with the following event: self.Bind(wx.EVT_NOTEBOOK_PAGE_CHANGING, self.OnPageChanging) What is the diffrance between the following codes? def OnPageChanging(self, event): try: if ..... do some actions... event.Veto() return except: pass and def OnPageChanging(self, event): try: if ..... do some actions... event.Skip() return except: pass In this guide: http://zetcode.com/wxpython/events/ it says: Sometimes we need to stop processing an event. To do this, we call the method