📜  如何在 kivy python 代码示例中更改窗口大小

📅  最后修改于: 2022-03-11 14:45:12.918000             🧑  作者: Mango

代码示例1
#import everything you want
from kivy.core.window import Window #You must import this
Window.size = (600, 600) #Set it to a tuple with the (width, height) in Pixels
#(800, 600) is the default


#Your usual kivy code....