我真的不喜欢使用框架,因此我想在不使用框架的情况下通过按钮放置滚动条。这只是一个按钮,用不同的文字重复:
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
感谢您的帮助