I create a class like this below. But when I bind an event with the "save file" button, the wx.filelog is not going to setup. It's really weird. So I change the SuperClass to be wx.Frame, then it succeeds.Can anybody tell me why? Thanks.
class TestDialog(wx.Dialog):
def __init__(
self, parent, ID, title, size=wx.DefaultSize, pos=wx.DefaultPosition,
style=wx.DEFAULT_DIALOG_STYLE,
useMetal=False,):
self.pre = wx.PreDialog()
self.pre.SetExtraStyle(wx.DIALOG_EX_CONTEXTHELP)
self.pre.Create(parent, ID, title, pos, size, style)
self.PostCreate(self.pre)
self.fileButton = wx.Button(self , -1, "save file!")
self.Bind(wx.EVT_BUTTON, self.OnCompressToFileButton, self.fileButton)
def OnCompressToFileButton(self, event):
wildcard = "compress file(*.cof)|*.cof|Lempel-Zivsliding window compressfile(*.lz)|*.lz"
dlg = wx.FileDialog(self, message="Save file as ...", defaultDir=os.getcwd(), defaultFile="", wildcard=wildcard, style=wx.SAVE)
`

ShowModal()at any point? – acattle Aug 20 '12 at 1:20ShowModal()solve your problem? I'm not sure what you mean by "not going to set up". I assumed you meant that the dialog didn't show. – acattle Aug 20 '12 at 4:53