wxGrid将单个单元格绑定到事件

时间:2011-05-27 19:58:33

标签: events binding grid wxpython

我正在尝试执行以下操作:

cell = self.grid.SetCellValue(0, 0, "test")  # Where grid is the instance of wx.grid
                                             # and self is a wx.panel instance
self.grid.Bind(EVT_GRID_CELL_LEFT_CLICK, self.on_left_click, cell)

这是我尝试将单击单元格(0,0)的事件绑定到self.on_left_click()。

但是,如果发生左键单击,此方法会将所有单元格绑定到此事件。 有没有办法只绑定单元格(0,0)而没有其他单元格?

1 个答案:

答案 0 :(得分:1)

更简单的解决方案可能是检查事件处理程序中事件的行和列,并仅在事件来自单元格(0,0)时执行操作:

def on_left_click(self, evt):
    if evt.GetRow() == 0 and evt.GetCol() == 0:
        #do stuff
    evt.Skip()