Renamed to new PySimpleGUIQt name.... this time for sure
This commit is contained in:
parent
d1a1a41f32
commit
645482b3c6
8 changed files with 90 additions and 82 deletions
|
@ -1,17 +0,0 @@
|
|||
import PySimpleGUI_Qt as sg
|
||||
|
||||
layout = [
|
||||
[sg.Text('This is the new Dial Element!')],
|
||||
[sg.Dial(range=(1,100), key='_DIAL_')],
|
||||
[sg.Button('Show'), sg.Button('Exit')]
|
||||
]
|
||||
|
||||
window = sg.Window('Window Title').Layout(layout)
|
||||
|
||||
while True: # Event Loop
|
||||
event, values = window.Read()
|
||||
print(event, values)
|
||||
if event is None or event == 'Exit':
|
||||
break
|
||||
|
||||
window.Close()
|
Loading…
Add table
Add a link
Reference in a new issue