]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-14/grid_basic.py
   4 class TestFrame(wx
.Frame
): 
   6         wx
.Frame
.__init
__(self
, None, title
="Simple Grid", 
   8         grid 
= wx
.grid
.Grid(self
) 
  12                 grid
.SetCellValue(row
, col
, 
  13                                   "cell (%d,%d)" % (row
, col
)) 
  15 app 
= wx
.PySimpleApp()