'utf-8'编解码器无法解码位置0的字节0xff:无效的起始字节

时间:2018-11-10 02:53:11

标签: python-3.x tkinter tkinter-canvas tkinter-layout

我正在tkinter中实现mousewheel事件

def on_mousewheel(event,canvas):
    canvas.yview_scroll(event.delta,"units")

canvas.bind_all("<MouseWheel>", lambda event:on_mousewheel(event,canvas))

这给了我错误

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xff in position 0: invalid start byte

我正在使用MacOS。如果我拖动滚动条,一切都很好。如果我尝试使用Mac触控板或其他鼠标滚动,则tkinter会关闭,并出现上述错误

0 个答案:

没有答案