给定一个简单的wx.grid.Grid
和wx.grid.GridCellChoiceEditor
作为默认单元格编辑器。现在尝试在网格中向下滚动并开始编辑空单元格。现在,如果单元格有值,一切都会好的。但是,当单元格为空时,ComboBox的TextCtrl绘制在错误的位置。似乎垂直滚动偏移减去两次。 Source code for sample app
WX版本2.9.4.0
答案 0 :(得分:0)
作为一种解决方法,我现在在即将显示编辑器时设置非空值。使用wx.CallAfter
我将值再次设置为空,因此用户不会注意到任何内容。但是,网格中的值将保持非空值(空格),因为在回调中更改它将触发不正确的重新渲染。
def __init__(...):
# ...
self.grid1.Bind(wx.grid.EVT_GRID_EDITOR_CREATED, self.editor_created)
self.grid1.Bind(wx.grid.EVT_GRID_EDITOR_SHOWN, self.editor_shown)
def editor_created(self, event):
self.control = event.GetControl()
event.Skip()
def editor_shown(self, event):
cursor = event.Row, event.Col
value = self.grid1.GetCellValue(*cursor)
if not value:
self.grid1.SetCellValue(cursor[0], cursor[1], ' ')
def unfix():
self.control.SetValue(value)
self.control.Popup()
# @todo should set the cell value back to empty value here,
# but that triggers the bug again.
wx.CallAfter(unfix)
event.Skip()
还有source code的工作示例。