Tkinter Label does not show Image

前端 未结 3 1087
心在旅途
心在旅途 2020-11-27 21:32

I\'m trying to learn some tkinter. I can\'t get tkinter to display an icon. I don\'t know where it goes wrong. It does not produce any error and it respects the size of the

3条回答
  •  旧巷少年郎
    2020-11-27 22:19

    When you add a PhotoImage or other Image object to a Tkinter widget, you must keep your own reference to the image object. If you don’t, the image won’t always show up.

    Decision here

提交回复
热议问题