改变Kivy中的文本案例

时间:2016-04-17 13:53:03

标签: python kivy kivy-language

我正在编写一个程序,我希望将多个标签的文本更改为大写。但我的程序似乎只将最后一个文本更改为大写。这是我的计划。这里,只有c被转换为大写。 a和b保持小写。我哪里错了?

from kivy.app import App
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.button import Button
from kivy.uix.togglebutton import ToggleButton
from kivy.lang import Builder

Builder.load_string('''
<box>:
    ToggleButton:
        text: 'Caps Lock'
        on_state:
            if self.state == 'down': lol.text = lol.text.upper()
            elif self.state == 'normal': lol.text = lol.text.lower()

    Label:
        id: lol
        text: 'a'

    Label:
        id: lol
        text: 'b'

    Label:
        id: lol
        text: 'c'
''')

class box(BoxLayout):
    pass

class main(App):
    def build(self):
        return box()

if __name__ == "__main__":
    main().run()

1 个答案:

答案 0 :(得分:1)

id属性在规则中是唯一的。你压了两次。我建议给每个标签一个唯一的id,并编写一个函数(在box中),将其内容设置为大写或小写。

带有循环的版本,而不是为每个标签指定唯一的id

Builder.load_string('''
<Box>:
    toggle: toggle

    ToggleButton:
        id: toggle
        text: 'Caps Lock'
        on_state: root.change_labels()

    Label:
        text: 'a'

    Label:
        text: 'b'

    Label:
        text: 'c'
''')


class Box(BoxLayout):

    toggle = ObjectProperty()

    def change_labels(self):
        for child in self.children[:3]:
            if self.toggle.state == 'down':
                child.text = child.text.upper()
            else:
                child.text = child.text.lower()