Exception in Tkinter callback Traceback (most recent call last): File "E:\python\lib\tkinter\__init__.py", line 1921, in __call__ return self.func(*args) File "C:\Users\lenovo\Desktop\E-book\interface.py", line 144, in on_mousewheel self.canva
时间: 2023-07-21 22:03:15 浏览: 283
code09_tkinter_login.pyw_python_tkinter_notepad.pyw_
这个错误是在使用 Tkinter 模块时出现的,可能是因为在 `on_mousewheel` 函数中使用了未定义的变量或方法。您可以检查一下代码,看看有没有拼写错误或者变量未定义的问题。如果没有,可以尝试使用 `try-except` 语句来捕获错误并输出错误信息,这样可以更好地了解问题所在。例如:
```python
def on_mousewheel(self, event):
try:
self.canvas.yview_scroll(int(-1*(event.delta/120)), "units")
except Exception as e:
print("Error:", e)
```
这样可以在出现错误时打印出错误信息,方便您进行排查。
阅读全文