我设法在我的wxPython应用程序中包含一个FileDialog小部件而没有错误,但我无法让它显示出来。这是我的班级:
class workingFrame(wx.Frame):
def __init__(self, parent, id):
wx.Frame.__init__(self, parent, id, 'UniStaller', size = (300, 200))
panel = wx.Panel(self)
basicDialog = wx.FileDialog(self, 'panel', 'Choose a file:', '/Users/student/Desktop/School')
我的框架出现了,但我没有得到任何形式的对话框。我需要一条线才能让它出现吗?
答案 0 :(得分:2)
basicDialog.ShowModal()
你需要展示它