def click1(self, event): self.col = self.tree.identify_column(event.x) self.row = self.tree.identify_row(event.y)
时间: 2024-05-24 22:14:24 浏览: 24
JavaScript中点击事件的写法
5星 · 资源好评率100%
def click1(self, event):
# 通过事件的 x 坐标来确定点击的列
self.col = self.tree.identify_column(event.x)
# 通过事件的 y 坐标来确定点击的行
self.row = self.tree.identify_row(event.y)
阅读全文