这是我的代码:
class MyGame(Widget):
def prepare_game(self):
print(self.height, self.width)
class MyApp(App):
def build(self):
game = MyGame()
game.prepare_game()
return game
MyApp().run()
输出是 100 100,但事实并非如此。当我想调用方法prepare_game()一次时,我可以找出小部件的实际大小吗?
有只小跳蛙
相关分类