wxPython:在Grid中选择更多行不起作用

时间:2014-07-23 08:43:29

标签: python wxpython

我有这段代码

     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() = []空列表的输出...为什么会发生这种情况?

0 个答案:

没有答案