Guest User

Untitled

a guest
Aug 3rd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.89 KB | None | 0 0
  1. # ex.kv
  2.  
  3. <Ex>:
  4.     cols: 3
  5.     canvas:
  6.         Color:
  7.             rgb: .2,.2,.2
  8.         Rectangle:
  9.             pos: self.pos
  10.             size: self.size
  11.     Label:
  12.         text: 'A checkbox'
  13.     CheckBox:
  14.         #on_active: root.checkActive(*args)
  15.         on_active: root.spinner(*args)
  16.  
  17.     Label:
  18.         text: root.Status
  19.     Label:
  20.         text: 'A group checkbox'
  21.     CheckBox:
  22.         group: 'my_check_group'
  23.         on_active: root.checkActive1(*args)
  24.  
  25.     Label:
  26.         text: root.Status1
  27.     Label:
  28.         text: 'A group checkbox'
  29.     CheckBox:
  30.         group: 'my_check_group'
  31.         on_active: root.checkActive2(*args)
  32.     Label:
  33.         text: root.Status2
  34.  
  35.     Label:
  36.         text: 'Python is the best language'
  37.     CheckBox:
  38.         id: pythonLang
  39.         active: True
  40.         on_active: root.checkActive3(*args)
  41.     Label:
  42.         text: 'Right on'
Advertisement
Add Comment
Please, Sign In to add comment