lolimoska

Untitled

Aug 17th, 2020
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. import PySimpleGUIQt as sg
  2.  
  3.  
  4. layout = [
  5. [sg.Text('',key="spamDefault")],
  6. [sg.Button('Запустить'), sg.Button('Выйти')]
  7. ]
  8. window = sg.Window('VimeTop | bot by nni', layout)
  9.  
  10. while True:
  11. event, values = window.Read()
  12. if event is None or event == "Выйти":
  13. break
  14. if event == "Запустить":
  15. window['spamDefault'].Update(f'Все данные верны', text_color='green');
  16.  
  17. window.Close()
Add Comment
Please, Sign In to add comment