Advertisement
jolgri

Assignment6

Dec 10th, 2019
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. from guizero import App, Box, PushButton, Text, Picture
  2. app = App(title="Email manager", bgcolor='lightyellow')
  3.  
  4.  
  5. picture = Picture(app, image = "C:/Users/Admin/Future learning/envelop.jpg")
  6. text1 = Text(app, text='This is an email manager, which saves your time and minimises distractions', align='left')
  7. text2= Text(app, text='You have a new email')
  8. text2.text_size=25
  9.  
  10. post_pone = PushButton(app, text="Read later")
  11. ok = PushButton(app, text="Read now")
  12.  
  13. app.display()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement