0

Here is a snipet of my code:

dialog_canvas = Canvas(dialog_frame, scrollregion = (0, 0, 450, 265), bg = 'white')
dialog_canvas.pack(expand = YES, fill = BOTH, side = LEFT)
yscroll = ttk.Scrollbar(root, orient = VERTICAL, command = dialog_canvas.yview)
dialog_canvas.config(yscrollcommand = yscroll.set)
yscroll.grid(row = 1, column = 1, sticky = 'ns')
Taka
  • 1
  • 4
    You've got the canvas in `dialog_frame` and the scrollbar in `root`. That doesn't seem right. – TigerhawkT3 Nov 27 '16 at 05:48
  • Possible duplicate of [Adding a scrollbar to a group of widgets in Tkinter](http://stackoverflow.com/questions/3085696/adding-a-scrollbar-to-a-group-of-widgets-in-tkinter) – furas Nov 27 '16 at 06:38

0 Answers0