Ваш исходный подход не будет работать, потому что app.root
не установлен, когда применяется ваше правило <CustomBtn@Button>
. Вот модифицированная версия вашего кода, которая делает то, что вы хотите, без этой проблемы:
from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.lang import Builder
from kivy.properties import ObjectProperty
from kivy.uix.button import Button
class CustomBtn(Button):
pass
Builder.load_string('''
<main>:
my_label:my_label
BoxLayout:
orientation:"vertical"
Label:
id: my_label
text: "Disabled"
CustomBtn:
text: "Btn1"
CustomBtn:
text: "Btn2"
CustomBtn:
text: "Btn3"
Button:
text: "Disable/Enable"
on_press: root.disablebtn()
''')
class main(BoxLayout):
my_label = ObjectProperty()
def disablebtn(self):
if self.my_label.text == "Disabled":
self.my_label.text = "Enabled"
self.disable_customBtns(False)
else:
self.my_label.text = "Disabled"
self.disable_customBtns(True)
def disable_customBtns(self, is_disabled):
# Look for CustomBtn instances, and set their `disabled` value
for child in self.walk():
if isinstance(child, CustomBtn):
child.disabled = is_disabled
def on_my_label(self, *args):
# this just sets the initial value of disabled to True
self.disable_customBtns(True)
class CallApp(App):
def build(self):
return main()
CallApp().run()