omarojo

Untitled

Mar 9th, 2012
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. class Reposo(Widget):
  2.     ReposoRoot = GridLayout(cols = 9, rows = 5, padding = 100)
  3.     self.getAnuncios(ReposoRoot)
  4.    
  5.     def getAnuncios(self, ReposoRoot)
  6.         ReposoRoot.add_widget(Button(text='Hello 1'))
  7.  
  8. class PanelApp(App):
  9.         def build(self):
  10.                 Panel = FloatLayout()
  11.                 ReposoWid = Reposo()
  12.                 Panel.add_widget(ReposoWid)
  13.                 return Panel
Advertisement
Add Comment
Please, Sign In to add comment