將垂直滾動條連線到文字小部件

小部件和滾動條之間的連線是雙向的。滾動條需要垂直展開,以使其與小部件具有相同的高度。

text = tk.Text(parent)
text.pack(side="left")

scroll_y = tk.Scrollbar(parent, orient="vertical", command=text.yview)
scroll_y.pack(side="left", expand=True, fill="y")

text.configure(yscrollcommand=scroll_y.set)