我有这段代码
try:
for rows in self.__allselectedrows:
print self.myGrid.SelectRow(rows, True)
except AttributeError:
pass
print self.myGrid.GetSelectedRows()
在wxPython Grid中的EVT_GRID_RIGHT_CLICK中。
问题:
在循环之后(是的,我已经检查过,循环将被执行并进入SelectRow
函数)GetSelectedRows()
= []空列表的输出...为什么会发生这种情况?