Response from MessageDialog : MessageDialog : WxPython PYTHON TUTORIALS


PYTHON TUTORIALS » WxPython » MessageDialog »

 

Response from MessageDialog


Response from MessageDialog
import wx


app = wx.PySimpleApp()
dlg = wx.MessageDialog(None, "Is this explanation OK?",'A Message Box',wx.YES_NO | wx.ICON_QUESTION)
retCode = dlg.ShowModal()
if (retCode == wx.ID_YES):
    print "yes"
else:
    print "no"
dlg.Destroy()

retCode = wx.MessageBox("Is this way easier?""Via Function",wx.YES_NO | wx.ICON_QUESTION)



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo WxPython
» MessageDialog