test_wx.py
990 Bytes
from wxPython.wx import *
class MyFrame(wxFrame):
def __init__(self, parent, ID, title, pos=wxDefaultPosition,
size=(200, 200), style=wxDEFAULT_FRAME_STYLE):
wxFrame.__init__(self, parent, ID, title, pos, size, style)
panel = wxPanel(self, -1)
button = wxButton(panel, 1003, "Close Me")
button.SetPosition(wxPoint(15, 15))
EVT_BUTTON(self, 1003, self.OnCloseMe)
EVT_CLOSE(self, self.OnCloseWindow)
button = wxButton(panel, 1004, "Press Me")
button.SetPosition(wxPoint(15, 45))
EVT_BUTTON(self, 1004, self.OnPressMe)
def OnCloseMe(self, event):
self.Close(True)
def OnPressMe(self, event):
x = 1 / 0
def OnCloseWindow(self, event):
self.Destroy()
class MyApp(wxApp):
def OnInit(self):
frame = MyFrame(NULL, -1, "Hello from wxPython")
frame.Show(true)
self.SetTopWindow(frame)
return true
app = MyApp(0)
app.MainLoop()