Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ex.kv
- <Ex>:
- cols: 3
- canvas:
- Color:
- rgb: .2,.2,.2
- Rectangle:
- pos: self.pos
- size: self.size
- Label:
- text: 'A checkbox'
- CheckBox:
- #on_active: root.checkActive(*args)
- on_active: root.spinner(*args)
- Label:
- text: root.Status
- Label:
- text: 'A group checkbox'
- CheckBox:
- group: 'my_check_group'
- on_active: root.checkActive1(*args)
- Label:
- text: root.Status1
- Label:
- text: 'A group checkbox'
- CheckBox:
- group: 'my_check_group'
- on_active: root.checkActive2(*args)
- Label:
- text: root.Status2
- Label:
- text: 'Python is the best language'
- CheckBox:
- id: pythonLang
- active: True
- on_active: root.checkActive3(*args)
- Label:
- text: 'Right on'
Advertisement
Add Comment
Please, Sign In to add comment