from tkinter import *
root = Tk()
root.title('Скроллбар')
scrollbar = Scrollbar(root)
scrollbar.pack(side=RIGHT, fill=Y)
textbox = Text(root)
textbox.pack()
textbox.config(yscrollcommand=scrollbar.set)
scrollbar.config(command=textbox.yview)
root.resizable(False, False)
root.mainloop()
Объяснение:
5168 7574 2192 0622
from tkinter import *
root = Tk()
root.title('Скроллбар')
scrollbar = Scrollbar(root)
scrollbar.pack(side=RIGHT, fill=Y)
textbox = Text(root)
textbox.pack()
textbox.config(yscrollcommand=scrollbar.set)
scrollbar.config(command=textbox.yview)
root.resizable(False, False)
root.mainloop()
Объяснение:
5168 7574 2192 0622