如何在不使用框架的情况下在tkinter中放置滚动条? (蟒蛇)

时间:2015-02-03 21:40:08

标签: python scroll tkinter scrollbar

我真的不喜欢使用框架,因此我想在不使用框架的情况下通过按钮放置滚动条。这只是一个按钮,用不同的文字重复:

x = 0
    yPos = 0.3
    try:
      for button in range(0,100):
        chemResourceButton = Button(root, text=resources[x] + "-" + descriptions[x])
        chemResourceButton.place(relx=0.5, rely=yPos, anchor=CENTER)
        x = x + 1
        yPos = yPos + 0.2

感谢您的帮助

0 个答案:

没有答案