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

14 lines
317 B
Python

def AskUser(self):
dlg = MyAskDialog(self)
if dlg.ShowModal() == wx.ID_OK:
# do something here
print 'Hello'
# else: dialog was cancelled or some another button pressed
dlg.Destroy()