git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24596
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxPyGridTableBase.__init__(self)
self.log = log
wxPyGridTableBase.__init__(self)
self.log = log
+ self.odd=wxGridCellAttr()
+ self.odd.SetBackgroundColour("sky blue")
+ self.even=wxGridCellAttr()
+ self.even.SetBackgroundColour("sea green")
+
+ def GetAttr(self, row, col, kind):
+ attr = [self.even, self.odd][row % 2]
+ attr.IncRef()
+ return attr
+
def GetNumberRows(self):
return 10000
def GetNumberRows(self):
return 10000