1

我在 Windows 中使用 Python 2.7/tkinter 进行编码,并在列表栏上放置了一个滚动条,我可以很容易地做到这一点(感谢effbot.org)。但是,我还想让滚动条更宽——它将在触摸屏上使用,因此选择它越容易越好。我认为 width 属性会使它更宽,但它所做的只是创建一些空白空间。我在这里做错了什么?

代码:

from Tkinter import *

top = Tk()

scrollbar = Scrollbar(top, width=100)
scrollbar.pack(side=RIGHT, fill=Y)

listbox = Listbox(top, yscrollcommand=scrollbar.set)
for i in range(1000):
    listbox.insert(END, str(i))
listbox.pack(side=LEFT, fill=BOTH)

scrollbar.config(command=listbox.yview)

top.mainloop()

产生这个:

http://img826.imageshack.us/img826/2619/uxbk.jpg

4

2 回答 2

2

聚会晚了几年,但我有一种方法可以使垂直滚动条在 X 轴上展开!(此外,由于当前时间,这适用于 Python 2 和 3)

诀窍是创建一个可以扩展的自定义样式。这个例子没什么用,你不会想要这么厚的滚动条,但是这个概念可以用来创建你想要的!

try:
    import Tkinter as tkinter
    import ttk

except:
    import tkinter
    import tkinter.ttk as ttk

root = tkinter.Tk()
root.geometry('%sx%s' % (root.winfo_screenwidth(), root.winfo_screenheight()))
root.pack_propagate(0)
textarea = tkinter.Text(root)

style = ttk.Style()
style.layout('Vertical.TScrollbar', [
    ('Vertical.Scrollbar.trough', {'sticky': 'nswe', 'children': [
        ('Vertical.Scrollbar.uparrow', {'side': 'top', 'sticky': 'nswe'}),
        ('Vertical.Scrollbar.downarrow', {'side': 'bottom', 'sticky': 'nswe'}),
        ('Vertical.Scrollbar.thumb', {'sticky': 'nswe', 'unit': 1, 'children': [
            ('Vertical.Scrollbar.grip', {'sticky': ''})
            ]})
        ]})
    ])

scrollbar = ttk.Scrollbar(root, command=textarea.yview)
textarea.config(yscrollcommand=scrollbar.set)


textarea.pack(side='left', fill='both', expand=0)
scrollbar.pack(side='left', fill='both', expand=1)

root.mainloop()

于 2019-08-04T13:32:35.483 回答
0

对于scrollbar.pack(side=RIGHT, fill=Y)dofill=BOTH而不是fill=Y.

于 2013-09-04T00:40:05.943 回答