0

问题

我怎样才能有一个滚动条来移动整个 Tkinter 框架?注意:我使用的是 Python 2.7.3。

代码和解释

我有这个代码来定义滚动条

        scrollbar = Scrollbar(soeg)
        scrollbar.pack(side=RIGHT, fill="y")

这段代码用于定义文本框

        h = 0
        s = 0
        for i in dom_nodup:

            abc = dom_nodup[h]
            text = Text(soeg, bg="brown", fg="white", height="10", width="60")          
            text.insert(INSERT, "%s \n" % abc[0])
            text.insert(END, "%s \n\n\n" % abc[1])
            text.pack()
            h += 1  
            s += 1

为每个文本实体创建一个新的文本框,以便以后更轻松地进行概述(计划有一个按钮来显示/隐藏输入)。

滚动条存在但不起作用

图片

4

2 回答 2

0

我建议您使用ScrolledText小部件。它会自动为每个文本小部件添加一个滚动条,并具有与Text. 下面是一个简短的例子来说明如何做到这一点。

from Tkinter import * #Import the Tkinter module
from ScrolledText import ScrolledText #import the scrolled text module
message = "I \n am \n scroll \n able. \n\n\n\n\n\n Yes I am!"
class Application(Frame): #Create a frame for the widgets

    def __init__(self, master):  #initialize the grid and widgets
        Frame.__init__(self,master)
        self.grid()
        self.widgets()
    def widgets(self):
        self.mytext = ScrolledText(self, width = 10) #Creates the widget
        self.mytext.grid() #Places it


root = Tk()
root.title("My Text Example")
#make my screen dimensions work

root.geometry("500x1000")
app = Application(root)

root.mainloop()

有关更多信息,请参阅Tkinterbook这个问题

于 2013-03-01T12:27:29.677 回答
0

要使滚动条正常工作,您必须做两件事:您必须告诉它要滚动哪个可滚动小部件,并且您必须告诉可滚动小部件要根据当前位置更新哪个滚动条。

scrollbar.configure(command=text.yview)
text.configure(yscrollcommand=scrollbar.set)
于 2013-03-01T12:48:05.627 回答