0
スクロールバーが表示され、移動可能な場合でも、ウィンドウ内のテキストをスクロールしません。tkinter:スクロールバーが表示されますが動作しません
私はtkinterを初めて使用しているため、問題を見つけることができません。
これは私がしようとしたものです:
def opensave():
global openname
if saveordelete == 1:
openname = savedname.get() + ".txt"
my_file = Path(openname)
if my_file.is_file():
file = open(openname, "r")
readopenname = file.read()
file.close()
root = Tk()
root.title("Saved file")
root.iconbitmap("morseicon.ico")
root.resizable(0,0)
root.geometry("520x610")
scrollbar = Scrollbar(root)
scrollbar.pack(side = RIGHT, fill=Y)
T = Listbox(root, yscrollcommand = scrollbar.set)
scrollbar.config(command = T.yview)
T = Text(root, height=500, width=500)
T.pack()
T.insert(END, readopenname)
root.mainloop()
は、あなたはそれが 'Text'ウィジェットや' Listbox'ウィジェットを制御しますか?あなたは 'Listbox'にそれを割り当てましたが、あなたの質問のテキストは' Text'ウィジェットを暗示しているようです。 –
私はそれをテキストに割り当てても、私がそれを使うときにテキストをスクロールしません。 – Lojas
ビット文法と改良された読みやすさを修正 – ezdazuzena