Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 WxPython Grid,我试图根据弹出菜单选择清除当前行的数据。我将弹出菜单绑定到清除数据的定义,但是当我单击选择时没有任何反应。这是代码片段。
def ClearCurrentRow(self,event): self.grid.SelectRow(self.grid.GetGridCursorRow(),True) self.grid.ClearSelection()
任何建议都非常感谢。
清除选择只是取消选择该行,您可能会发现删除该行并插入新行最快。
您可以通过将其单元格设置为空字符串来清除该行。我认为您需要逐个单元格地执行此操作-我不知道在整行上执行此操作的操作。