Advertisement
kingshuk2018

Untitled

Nov 21st, 2020
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. from guizero import App, Box, PushButton,Text
  2.  
  3. app = App()
  4.  
  5. box1 = Box(app, align="top", width="fill", border=4)
  6. box2 = Box(app, align="bottom", width="fill", border=4)
  7. box3 = Box(app, align="left", width="fill", border=6)
  8. box4 = Box(app, align="right", width="fill", border=6)
  9.  
  10. message1 = Text(box1, text="This is box 1")
  11. button1 = PushButton(box1, text="1st button")
  12. button2 = PushButton(box1, text="2nd button")
  13. message2 = Text(box2, text="This is box 2")
  14. button3 = PushButton(box2, text="3rd button")
  15. button4 = PushButton(box2, text="4th button")
  16. message3 = Text(box3, text="This is box 3")
  17. button5 = PushButton(box3, text="5th button")
  18. button6 = PushButton(box3, text="6th button")
  19. message4 = Text(box4, text="This is box 4")
  20. button7 = PushButton(box4, text="7th button")
  21. button8 = PushButton(box4, text="8th button")
  22.  
  23. app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement