質問

Is there a way to check if a Tkinter canvas has items or is empty?

I tried something like

prints self.canvas.winfo_children()

but it always prints an empty list, items or no items.

役に立ちましたか?

解決

You can use self.canvas.find_all() and check if it returns an empty tuple.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top