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

6 lines
190 B
Python

answer = wx.MessageBox("Quit program?", "Confirm",
wx.YES_NO | wx.CANCEL, main_frame)
if answer == wx.YES:
main_frame.Close()