Is it possible to make the ScrolledWindow respond to the mouse's scroll wheel? When I scroll the mouse wheel, it currently does nothing, but it is a huge minus for the usability when the user has to manually click and drag the scrollbar. The documentation on ScrolledWindow is so limited that I couldn't find the answer.
from tkinter import *
from tkinter.tix import *
root = Tk()
w = ScrolledWindow(root, width = 500, height = 700)
w.grid(row = 0, column = 0)
win = w.window
for i in range(50):
Label(win, text = 'lorem ipsum').grid(row = i, column = 0)
root.mainloop()
Thanks.