9 lines
257 B
Python
9 lines
257 B
Python
import wx
|
|
|
|
|
|
def YesNoDialog(question='Are you sure you want to do this?', caption='Yes or no?'):
|
|
dlg = wx.MessageDialog(None, question, caption, wx.YES_NO | wx.ICON_QUESTION)
|
|
result = dlg.ShowModal() == wx.ID_YES
|
|
dlg.Destroy()
|
|
return result
|