Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.Dialog.2.py
2016-05-18 16:38:18 -07:00

12 lines
251 B
Python

def AskUser(self):
dlg = MyAskDialog(self)
if dlg.ShowModal() == wx.ID_OK:
# do something here
print 'Hello'
# no need to call Destroy() here