根据this来源:x和y滚动条都可以添加到tkinter的Text()小部件中。在程序方法中使用的代码是:
from tkinter import *
root = Tk()
frame = Frame(master, bd=2, relief=SUNKEN)
frame.grid_rowconfigure(0, weight=1)
frame.grid_columnconfigure(0, weight=1)
xscrollbar = Scrollbar(frame, orient=HORIZONTAL)
xscrollbar.grid(row=1, column=0, sticky=E+W)
yscrollbar = Scrollbar(frame)
yscrollbar.grid(row=0, column=1, sticky=N+S)
text = Text(frame, wrap=NONE, bd=0,
xscrollcommand=xscrollbar.set,
yscrollcommand=yscrollbar.set)
text.grid(row=0, column=0, sticky=N+S+E+W)
xscrollbar.config(command=text.xview)
yscrollbar.config(command=text.yview)
frame.pack()
root.mainloop()
但是,我选择了类方法并编写了下面的代码,根据以下代码,滚动条有效,但x滚动条不起作用。为什么在这个例子中没有滚动条?
import tkinter as tk
class App(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.grid_rowconfigure(0, weight=1)
self.grid_columnconfigure(0, weight=1)
self.x_scrollbar = tk.Scrollbar(master=self, orient="horizontal")
self.x_scrollbar.grid(row=1, column=0, sticky="w, e")
self.y_scrollbar = tk.Scrollbar(master=self)
self.y_scrollbar.grid(row=0, column=1, sticky="n, s")
self.text = tk.Text(master=self, width=100, height=25, bg="black", fg="white", wrap=None)
self.text.grid(row=0, column=0, sticky="n, s, e, w")
self.configure_widgets()
self.pack()
def configure_widgets(self):
self.text.configure(xscrollcommand=self.x_scrollbar.set, yscrollcommand=self.y_scrollbar.set)
self.x_scrollbar.config(command=self.text.xview)
self.y_scrollbar.config(command=self.text.yview)
if __name__ == "__main__":
root = tk.Tk()
app = App(master=root)
app.mainloop()
答案 0 :(得分:5)
这里的问题不是滚动条代码,而是在文本框的换行配置中分配None
。
更改
wrap=None
到
wrap='none'
关于无关的说明
将sticky="n, s, e, w"
更改为sticky="nsew"
这里的引号中没有任何引号。而你的其他粘性应该是"we"
和"ns"
您可能一直在尝试使用棒的tkinter CONSTANTS版本。这看起来像这样:sticky=(N, S, E, W)
。但是,因为您没有导入*
,所以这不起作用。您可以单独从tkinter导入每个常量,但在这种情况下最好使用sticky="nsew"
代替。
此处仅供参考,是您从'nsew'
*
时获得的tkinter
常量列表
N='n'
S='s'
W='w'
E='e'
NW='nw'
SW='sw'
NE='ne'
SE='se'
NS='ns'
EW='ew'
NSEW='nsew'