0
我打開gui標籤中的文件。 我擁有的文件很大,我需要在gui框架中爲它滾動。 我使用加載該文件,並在一幀顯示它的代碼是如何在python中給gui滾動控件
from Tkinter import *
tk = Tk()
tk.title("Vulnerability Report")
f = open("hola.txt", "r").read()
Label(tk, text=f) .grid(row=0)
tk.mainloop()
這裏是截圖:I want a scroll here through which i can read the whole file up and down
現在看看我已更新的代碼。 – Alex
更好,現在用ScrolledText替換Label。 –