some test code
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40244 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -230,7 +230,7 @@ class SimpleGrid(gridlib.Grid): ##, mixins.GridAutoEditMixin):
|
|||||||
class TestFrame(wx.Frame):
|
class TestFrame(wx.Frame):
|
||||||
def __init__(self, parent, log):
|
def __init__(self, parent, log):
|
||||||
wx.Frame.__init__(self, parent, -1, "Simple Grid Demo", size=(640,480))
|
wx.Frame.__init__(self, parent, -1, "Simple Grid Demo", size=(640,480))
|
||||||
grid = SimpleGrid(self, log)
|
self.grid = SimpleGrid(self, log)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -241,6 +241,9 @@ if __name__ == '__main__':
|
|||||||
app = wx.PySimpleApp()
|
app = wx.PySimpleApp()
|
||||||
frame = TestFrame(None, sys.stdout)
|
frame = TestFrame(None, sys.stdout)
|
||||||
frame.Show(True)
|
frame.Show(True)
|
||||||
|
#import wx.py
|
||||||
|
#shell = wx.py.shell.ShellFrame(frame, locals={'wx':wx, 'frame':frame})
|
||||||
|
#shell.Show()
|
||||||
app.MainLoop()
|
app.MainLoop()
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user