]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-14/grid_size.py
   4 class TestFrame(wx
.Frame
): 
   8         wx
.Frame
.__init
__(self
, None, title
="Grid Sizes", 
  10         grid 
= wx
.grid
.Grid(self
) 
  14                 grid
.SetCellValue(row
, col
, "(%s,%s)" % (row
, col
)) 
  16         grid
.SetCellSize(2, 2, 2, 3)         
  17         grid
.SetColSize(1, 125)   
  18         grid
.SetRowSize(1, 100) 
  20 app 
= wx
.PySimpleApp()