我正在学习Tkinter。从我的书中,我得到以下代码来生成一个简单的垂直滚动条:
from tkinter import * # Import tkinter
class ScrollText:
def __init__(self):
window = Tk() # Create a window
window.title("Scroll Text Demo") # Set title
frame1 = Frame(window)
frame1.pack()
scrollbar = Scrollbar(frame1)
scrollbar.pack(side = RIGHT, fill = Y)
text = Text(frame1, width = 40, height = 10, wrap = WORD,
yscrollcommand = scrollbar.set)
text.pack()
scrollbar.config(command = text.yview)
window.mainloop() # Create an event loop
ScrollText() # Create GUI
产生以下不错的输出: enter image description here
但是,当我尝试以明显的方式更改此代码以获得水平滚动条时,它会产生一个奇怪的输出。这是我正在使用的代码
from tkinter import * # Import tkinter
class ScrollText:
def __init__(self):
window = Tk() # Create a window
window.title("Scroll Text Demo") # Set title
frame1 = Frame(window)
frame1.pack()
scrollbar = Scrollbar(frame1)
scrollbar.pack(side = BOTTOM, fill = X)
text = Text(frame1, width = 40, height = 10, wrap = WORD,
xscrollcommand = scrollbar.set)
text.pack()
scrollbar.config(command = text.xview)
window.mainloop() # Create an event loop
ScrollText() # Create GUI
这是我运行时的结果: enter image description here
答案 0 :(得分:2)
您将水平滚动xscrollcommand
分配给垂直scrollbar
。您需要将Scrollbar
的orient
选项修改为'horizontal'
,默认为'vertical'
。
尝试更换:
scrollbar = Scrollbar(frame1)
使用:
scrollbar = Scrollbar(frame1, orient='horizontal')