我有以下代码:
class MyGridLayout(GridLayout):
def __init__(self, **kwargs):
super(MyGridLayout, self).__init__(**kwargs)
class Board(Widget):
my_layout = ObjectProperty(None)
def __init__(self, **kwargs):
super(Board, self).__init__(**kwargs)
def on_my_layout(self, instance, value):
print self.my_layout.cols
class MyApp(App):
def build(self):
return Board()
if __name__ == '__main__':
MyApp().run()
这是我的kv文件:
<Board>:
my_layout: my_layout
MyGridLayout:
id: my_layout
cols: 10
rows: 10
在方法on_my_layout
上我想打印MyGridLayout实例有多少个cols。但是,它总是返回给我。如果我想访问行,它也会返回None。我必须在我的python代码或我的kivy语言上更改以访问MyGridLayout
的行和列的正确值?它必须返回rows = 10
和cols = 10
。
答案 0 :(得分:0)
<Board>:
my_layout: my_layt ## This
MyGridLayout:
id: my_layt
cols: 10
rows: 10
它不起作用,因为您将不存在的窗口小部件分配给ObjectProperty
,因此YourObjectProperty.cols==None
。你基本上需要这样做:
<Board>:
MyGridLayout:
id: my_layt
cols: 10
rows: 10
my_layout: my_layt ## This
会引发kv错误。但是,如果您在__init__()
中执行此操作,那么您的小部件已经存在并正常工作,它将打印出来并没有问题。不要对id和variable使用相同的名称,否则它可能根本不起作用。
class Board(Widget):
my_layout = ObjectProperty(None)
def __init__(self, **kwargs):
super(Board, self).__init__(**kwargs)
self.my_layout = self.ids.my_layt