📜  如何更改画布 tkinter 中的文本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:21.582000             🧑  作者: Mango

代码示例3
#here im giving you an example of how you can change canvas text, u have to use itemconfig :)

self.canvas = Canvas(root, width=800, height=650, bg = '#afeeee')
mytext = self.canvas.create_text(100,10,fill="darkblue",font="Times 20 italic bold",text="Click the bubbles that are multiples of two.")
#here ill edit the text.

time.sleep(1)

self.canvas.itemcongig(mytext, text="text has changed!")