Мне не удается правильно отобразить полосу прокрутки в моем блокноте tkinter.Мне нужна прокрутка для каждой страницы
root = tk.Tk()
root.title('Client Intake Form')
n = ttk.Notebook(root)
f1 = ttk.Frame(n)
f2 = ttk.Frame(n)
f3 = ttk.Frame(n)
n.add(f1, text='Page 1', compound=tk.TOP)
n.add(f2, text='Page 2', compound=tk.TOP)
n.add(f3, text='Page 3', compound=tk.TOP)
n.pack()
canvas = tk.Canvas(f1, width=1000, height=1000, relief='raised')
canvas.pack()
scroll = tk.Scrollbar(canvas, command=canvas.yview, orient=tk.VERTICAL)
canvas.config(yscrollcommand=scroll.set, scrollregion=(1000,0,1000,1000))
scroll.pack(side=tk.RIGHT, fill=tk.Y, expand=True)
#######PAGE 2#######
page2 = tk.Canvas(f2, width=1000, height=1000, relief='raised')
page2.pack()
######PAGE 3######
page3 = tk.Canvas(f3, width=1000, height=1000, relief='raised')
page3.pack()
root.mainloop()
Мне нужна полоса прокрутки с правой стороны каждой страницы.