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