Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/Dialog.2.py
2012-04-10 03:16:37 +00: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