Advertisement
jolgri

Assignment7

Dec 11th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. # Skriv din kod här :-)
  2. from guizero import App, Text, TextBox, Box, PushButton
  3.  
  4. # Boxes
  5. app = App(title='Contact information', width=400, height=500, bg='lightyellow')
  6.  
  7. box= Box(app,layout='grid')
  8. box1=Text(box, text='Contact information', grid=[0,1, 1,1])
  9. box1.text_size=30
  10.  
  11. box2=TextBox(box, grid=[1,2], align='left')
  12. box2_lbl=Text(box, grid=[0,2], text='Name')
  13.  
  14. box3=TextBox(box, grid=[1,3], align='left')
  15. box3_lbl=Text(box, grid=[0,3], text='Surname')
  16.  
  17. box4=TextBox(box, grid=[1,4], align='left')
  18. box4_lbl=Text(box, grid=[0,4], text='Phone')
  19.  
  20. box5=TextBox(box, grid=[1,5], align='left')
  21. box5_lbl=Text(box, grid=[0,5], text='Email')
  22.  
  23. box6=PushButton(box, text='Save', width='fill', grid=[0,7])
  24. box6.bg='lightgreen'
  25. box6.text_color='red'
  26. # End
  27. app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement