手动配置滚动条的Y尺寸

时间:2017-12-18 18:00:44

标签: python python-3.x tkinter

让我介绍一下我想做的事情。

我正在创建一个简单的Tkinter程序,该程序使用Treeview小部件为用户显示信息。

我最初使用.grid(),但现在使用.place()感觉更舒服。这里的问题是滚动条。 It doesn't fill the Y-Dimension与.pack()一样。

相反,I want to have this.

作为奖励,当我使用.pack()

this happens

如果您需要,这是代码:

self.ah = Treeview(self.M, selectmode='browse')
self.ah["columns"] = ("id", "time", "pr")
#
self.ah.heading('#0', text='Description', anchor='c')
self.ah.column('#0', anchor='c', width=170)
#
self.ah.heading('id', text='ID', anchor='c')
self.ah.column('id', anchor='c', width=30)
#
self.ah.heading('time', text='time', anchor='c')
self.ah.column('time', anchor='c', width=100)
#
self.ah.heading('pr', text='stuff', anchor='c')
self.ah.column('pr', anchor='c', width=70)
#
self.ah.place(x=400, y=70)
#
self.ah.scroll = Scrollbar(self.M, orient='vertical', command=self.ah.yview)
#
self.ah.scroll.place(x=770, y=70)
self.ah.config(yscrollcommand=self.ah.scroll.set)

谢谢! 此外,任何suggerence赞赏。 :)

1 个答案:

答案 0 :(得分:2)

将Treeview和Scrollbar打包到一个Frame中,然后使用place将Frame定位在您想要的位置。像这样:

self.ah_frame = Frame(self.M)
self.ah = Treeview(self.ah_frame, selectmode='browse')
self.ah.pack(side=LEFT)
self.ah.scroll = Scrollbar(self.ah_frame, orient='vertical', command=self.ah.yview)
self.ah.scroll.pack(side=RIGHT, fill=Y, expand=True)

self.ah_frame.place(x=400, y=70) # place the Frame that contains both the Treeview and Scrollbar

此外,我强烈建议您尽可能避免使用place。窗口小部件使用不同的用户设置,字体和操作系统更改大小。使用地方意味着您的代码在您的计算机上看起来就像您想要的那样,而不是在其他地方。