Advertisement
jolgri

Assignment4

Dec 9th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. from guizero import App, ButtonGroup, Combo, TextBox, PushButton, Text, info
  2.  
  3. app = App(title="Hero-master")
  4.  
  5. lbl_intro1= Text(app, text ='You can create hero name here')
  6. lbl_intro1.text_size = 25
  7. lbl_intro1.text_color= 'darkblue'
  8.  
  9. def btn_go_clicked():
  10. info("Hero name created","Hero name is: " + txt_adj.value + " " + txt_color.value + " " + txt_animal.value + ".")
  11.  
  12. lbl_adj = Text(app, text="What's your favorit character?")
  13. txt_adj = ButtonGroup(app, options= ["Generous", "Amazing", "Fearless", "Resistant", "Angry"])
  14. lbl_color = Text(app, text="What's your favorit color?")
  15. txt_color = TextBox(app)
  16. lbl_animal = Text(app, text="Select one of your favorit animal?")
  17. txt_animal = Combo(app, options=["Dragon", "Eagle", "Rabit", "Dog", "Elephant", "Lion", "Mouse", "Ant", "Bug", "Ladybird"])
  18.  
  19. btn_go = PushButton(app, command=btn_go_clicked, text="Create")
  20. app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement