我有一些代码:
A = NumericProperty(1)
B = NumericProperty(2)
C = ReferenceListProperty(A, B)
如何获取ReferenceListProperty的NumericProperty?
答案 0 :(得分:0)
C[0]
返回A,C[1]
返回B
这是一个带有您的值的小型示例应用程序,它从C(.py)
打印A和B.from kivy.app import App
from kivy.base import Builder
from kivy.properties import NumericProperty, ReferenceListProperty
from kivy.uix.boxlayout import BoxLayout
Builder.load_string("""
<rootwi>:
Button:
text: 'print A via ReferenceListProperty'
on_press: print(root.C[0])
Button:
text: 'print B via ReferenceListProperty'
on_press: print(root.C[1])
""")
class rootwi(BoxLayout):
A = NumericProperty(1)
B = NumericProperty(2)
C = ReferenceListProperty(A, B)
class MyApp(App):
def build(self):
return rootwi()
if __name__ == '__main__':
MyApp().run()
class MyApp(App):
def build(self):
return rootwi()
if __name__ == '__main__':
MyApp().run()