self.SetMenuBar(menuBar)
panel = wxPanel(self, -1)
- text = wxStaticText(panel, -1, "Hello World!\nWhere is my menu?")
+ if wxPlatform == "__WXMAC__":
+ text = wxStaticText(panel, -1, "Hello World!\nWhere is my menu?")
+ else:
+ text = wxStaticText(panel, -1, "Hello World!")
text.SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD))
text.SetSize(text.GetBestSize())
btn = wxButton(panel, -1, "Close")
def OnButton(self, evt):
+ print "OnButton"
self.Close()
app = wxPySimpleApp()