“Comment changer de texte dans une toile tkinter” Réponses codées

Tkinter Texte en toile

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

Comment changer de texte dans une toile tkinter

#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.itemconfig(mytext, text="text has changed!")

#this is an edit because for accident i typed some text wrong, this is fix
Average Anteater

Comment changer de texte dans une toile tkinter

#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!")
Average Anteater

Réponses similaires à “Comment changer de texte dans une toile tkinter”

Questions similaires à “Comment changer de texte dans une toile tkinter”

Plus de réponses similaires à “Comment changer de texte dans une toile tkinter” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code