以下代码在每次使用组合框选择新值时填充网格。 第一次代码运行它工作正常并创建一个填充网格,在col 4中的每个单元格中都有一个下拉列表。但是,当我选择第二个新值并且函数执行self.m_grid_3.ClearGrid()并重新填充时,我得到了跟随错误。
self.m_grid3.SetCellEditor(row, col, self.choice_editor)
File "C:\Python27\lib\site-packages\wx-3.0-msw\wx\grid.py", line 2000, in SetCellEditor
return _grid.Grid_SetCellEditor(*args, **kwargs)
TypeError: in method 'Grid_SetCellEditor', expected argument 4 of type 'wxGridCellEditor *'
选择col4中的下拉列表然后崩溃python。
我有什么想法可以解决这个问题。
以下是相关代码。
class Inspection(BulkUpdate):
def __init__(self, parent):
BulkUpdate.__init__(self, parent)
list = EmployeeList()
list_climbers = list.get_climbers()
for name in list_climbers:
self.edit_kit_comboBox.Append(str(name.employee))
choices = ["Yes", "No", "Not Checked"]
self.choice_editor = wx.grid.GridCellChoiceEditor(choices, True)
def on_engineer_select( self, event ):
self.m_grid3.ClearGrid()
person = self.edit_kit_comboBox.GetValue()
list = KitList()
equipment = list.list_of_equipment(person, 1)
rows = len(equipment)
for row in range(0, rows):
for col in range(0, 5):
print "row = %s col = %s" % (row, col)
if col == 4:
self.m_grid3.SetCellValue(row, col+2, str(equipment[row][col]))
self.m_grid3.SetCellValue(row, col, "Pass")
self.m_grid3.SetCellEditor(row, col, self.choice_editor)
else:
self.m_grid3.SetCellValue(row, col, str(equipment[row][col]))
代码在第二次循环时停止,同时第二次填充网格。 我一直试图解决这个问题。
答案 0 :(得分:0)
尝试将此添加到__init__
:
self.choice_editor.IncRef()
我的猜测是,当您调用ClearGrid
时,正在删除编辑器对象的C ++部分。给它额外的引用告诉Grid你要坚持它。
答案 1 :(得分:0)
回答添加
self.choice_editor.IncRef()
我将选择列表定义与
一起移动到了函数中self.choice_editor.IncRef()
现在它看起来像这样
def on_engineer_select( self, event ):
self.m_grid3.ClearGrid()
choices = ["Pass", "Fail", "Not Checked"]
self.choice_editor = wx.grid.GridCellChoiceEditor(choices, False)
person = self.edit_kit_comboBox.GetValue()
list = KitList()
equipment = list.list_of_equipment(person, 1)
print "Length of equipment = %s" % len(equipment)
rows = len(equipment)
for row in range(0, rows):
for col in range(0, 5):
print "row = %s col = %s" % (row, col)
if col == 4:
self.choice_editor.IncRef()
self.m_grid3.SetCellValue(row, col+2, str(equipment[row][col]))
self.m_grid3.SetCellValue(row, col+1, str(date.today()))
self.m_grid3.SetCellEditor(row, col, self.choice_editor)
self.m_grid3.SetCellValue(row, col, "Pass")
else:
self.m_grid3.SetCellValue(row, col, str(equipment[row][col]))
现在代码可以正常运行。