]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/samples/wxPIA_book/Chapter-14/grid_size.py
move wxPython to new trunk
[wxWidgets.git] / wxPython / samples / wxPIA_book / Chapter-14 / grid_size.py
diff --git a/wxPython/samples/wxPIA_book/Chapter-14/grid_size.py b/wxPython/samples/wxPIA_book/Chapter-14/grid_size.py
deleted file mode 100644 (file)
index d23c21e..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-import wx
-import wx.grid
-
-class TestFrame(wx.Frame):
-    
-    
-    def __init__(self):
-        wx.Frame.__init__(self, None, title="Grid Sizes",
-                          size=(600,300))
-        grid = wx.grid.Grid(self)
-        grid.CreateGrid(5,5)
-        for row in range(5):
-            for col in range(5):
-                grid.SetCellValue(row, col, "(%s,%s)" % (row, col))
-         
-        grid.SetCellSize(2, 2, 2, 3)        
-        grid.SetColSize(1, 125)  
-        grid.SetRowSize(1, 100)
-
-app = wx.PySimpleApp()
-frame = TestFrame()
-frame.Show()
-app.MainLoop()