簡體   English   中英

TKinter - 無法更新文本小部件

[英]TKinter - Unable to update Text widget

我正在嘗試更新Text小部件,但無論我嘗試什么都沒有更新,也沒有錯誤

def update():# a button calls this

    textBox.delete(1.0, tk.END)
    textBox.insert(tk.END,"test")


textBox = tk.Text(frame1,height=2,width=10)
textBox.config(state='disabled') #disable editing

textBox.grid(row=0,column=1,pady=2)

使用@JacksonPro 的建議

import tkinter as tk

def update():# a button calls this
    textBox.config(state="normal") # Make the state normal
    textBox.delete("0.0", "end")
    textBox.insert("end", "test")
    textBox.config(state="disabled") # Make the state disabled again


root = tk.Tk()

textBox = tk.Text(root, height=2, width=10)
textBox.config(state="disabled") #disable editing
textBox.grid(row=0, column=1, pady=2)

button = tk.Button(root, text="Click me", command=update)
button.grid(row=1, column=1)
root.mainloop()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM