如何在 Tkinter 列表框中插入时添加自动滚动?

Posted

技术标签:

【中文标题】如何在 Tkinter 列表框中插入时添加自动滚动?【英文标题】:How to add Autoscroll on insert in Tkinter Listbox? 【发布时间】:2011-04-11 13:50:38 【问题描述】:

我正在使用列表框(带有滚动条)进行日志记录:

self.listbox_log = Tkinter.Listbox(root, height = 5, width = 0,)
self.scrollbar_log = Tkinter.Scrollbar(root,)

self.listbox_log.configure(yscrollcommand = self.scrollbar_log.set)
self.scrollbar_log.configure(command = self.listbox_log.yview)

现在,当我这样做时:

self.listbox_log.insert(END,str)

我希望选择插入的元素。我试过了:

self.listbox_log.selection_anchor(END)

但这不起作用...请提出解决方案...

【问题讨论】:

【参考方案1】:

AFAIK ScrollBar 小部件没有自动滚动功能,但可以通过在插入新项目后调用listBoxyview() 方法轻松实现。如果您需要选择新项目,您也可以使用listboxselect_set 方法手动完成。

from Tkinter import *

class AutoScrollListBox_demo:
    def __init__(self, master):
        frame = Frame(master, width=500, height=400, bd=1)
        frame.pack()

        self.listbox_log = Listbox(frame, height=4)
        self.scrollbar_log = Scrollbar(frame) 

        self.scrollbar_log.pack(side=RIGHT, fill=Y)
        self.listbox_log.pack(side=LEFT,fill=Y) 

        self.listbox_log.configure(yscrollcommand = self.scrollbar_log.set)
        self.scrollbar_log.configure(command = self.listbox_log.yview)

        b = Button(text="Add", command=self.onAdd)
        b.pack()

        #Just to show unique items in the list
        self.item_num = 0

    def onAdd(self):
        self.listbox_log.insert(END, "test %s" %(str(self.item_num)))       #Insert a new item at the end of the list

        self.listbox_log.select_clear(self.listbox_log.size() - 2)   #Clear the current selected item     
        self.listbox_log.select_set(END)                             #Select the new item
        self.listbox_log.yview(END)                                  #Set the scrollbar to the end of the listbox

        self.item_num += 1


root = Tk()
all = AutoScrollListBox_demo(root)
root.title('AutoScroll ListBox Demo')
root.mainloop()

【讨论】:

您也可以使用列表框“查看”命令,不过查看结束元素时效果是一样的。 谢谢,我用了 self.listbox_log.insert(END,str) size = len(self.listbox_log.get(-1, END)) self.listbox_log.yview_scroll(size,"units")你的方式更优雅。【参考方案2】:

尝试以这种方式进行。 (我复制了另一个问题:How to auto-scroll a gtk.scrolledwindow?)它对我来说很好。

def on_TextOfLog_size_allocate(self, widget, event, data=None):
    adj = self.scrolled_window.get_vadjustment()
    adj.set_value( adj.upper - adj.page_size )

【讨论】:

这在列表框上不起作用,因为没有 get_vadjustment 方法,原始问题也没有提到关于名为 scrolled_window 的小部件的任何内容。您确定您发布了正确问题的答案吗? 我用的是 pygtk 而不是 tkint,抱歉弄错了。

以上是关于如何在 Tkinter 列表框中插入时添加自动滚动?的主要内容,如果未能解决你的问题,请参考以下文章

插入数据时Recyclerview自动向上滚动

永久添加/删除tkinter列表框中的项目

Tkinter列表框和画布不会一起滚动

如何在 Hive DB 框中的位置 0 处插入项目?

Python中tkinter中控件的使用(6.Listbox列表框(添加滚动条))

当输入框大于tkinter中的窗口高度时,我们如何添加滚动条?