“Jak zmienić tekst w płótnie tkinter” Kod odpowiedzi

Tkinter tekst na płótnie

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

Jak zmienić tekst w płótnie 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

Jak zmienić tekst w płótnie 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

Odpowiedzi podobne do “Jak zmienić tekst w płótnie tkinter”

Pytania podobne do “Jak zmienić tekst w płótnie tkinter”

Więcej pokrewnych odpowiedzi na “Jak zmienić tekst w płótnie tkinter” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu