Passing image object as a button background in Kivy

前端 未结 3 747
伪装坚强ぢ
伪装坚强ぢ 2021-02-08 01:52

In Kivy, is there a way to pass image object as a button background, instead of image file name?

button.background_normal property accepts only strings. I w

3条回答
  •  猫巷女王i
    2021-02-08 02:07

    You can use

    Button:

      id:mybutton
    
      background_down: "bgdown.png"
    
      background_normal: "bg.png"
    

提交回复
热议问题