私はtkinterGUI(私の最初のもの)を書いています、そしてそれはユーザー入力からのデータを結合することです。
とにかく私がやっている方法は次のとおりです
from Tkinter import *
root = Tk()
textoutput = []
textbox = Entry(root, width = 5)
textinput = []
x = 0
offset = 0
yco = 40
press = 0
textbox.pack()
textbox.place(x = 10, y = yco + offset)
def addtextbox():
global textinput, x, yco, offset, press, textbox
offset = offset + 30
txtinput = textbox.get()
textinput.append(txtinput)
textbox = Entry(root, width = 5)
textbox.place(x = 10, y = yco + offset)
add = Button(root, text = "Add box", width = 10, command = addtextbox)
add.pack()
add.place(x = 225, y = 5)
root.mainloop()
私が抱えている問題は、テキストボックスが多すぎて表示できず、スクロールバーが必要になると、特定のポイントに到達することです。effbot.orgやグーグルで検索した他の場所のサンプルコードを使用してみましたが、テキストボックス自体ではなく、背景をスクロールするだけのようです。
何か案は ?
乾杯
アーロン