Completely new set of materials for GUI class! Thanks Tony!!

This commit is contained in:
MikeTheWatchGuy 2018-10-08 01:36:38 -04:00
parent ee0765c345
commit 8f7356f425
53 changed files with 1909 additions and 903 deletions

View file

@ -1,40 +0,0 @@
#PySimple examples (v 3.8)
#Tony Crewe
#Sep 2018
import PySimpleGUI as sg
sg.ChangeLookAndFeel('GreenTan') #Set colour scheme
sg.SetOptions (font =('Calibri',12,'bold') ) #and font
#One checkbox and three radio buttons (grouped as 'Radio1'
layout = [[sg.Text('Membership Calculator', font = ('Calibri', 16, 'bold'))],
[sg.Checkbox(' Student? 10% off', size = (25,1)), #value[0]
sg.ReadButton('Display Cost', size = (14,1))],
[sg.Radio('1 month $50', 'Radio1', default = True), #value[1]
sg.Radio('3 months $100', 'Radio1'), #value[2]
sg.Radio('1 year $300', 'Radio1')], #value[3]
[sg.Text('', size = (30,1), justification = 'center', font =('Calibri', 16, 'bold'), key = 'result')]]
window = sg.Window('Gym Membership').Layout(layout)
while True:
button, value = window.Read()
if button is not None:
if value[1]:
cost = 50
elif value[2]:
cost = 100
else:
cost = 300
if value[0]:
cost = cost*0.9 #apply discount
#format as currency $ symbol and 2 d.p. - make a string
result = str(' Cost: ' + '${:.2f}'.format(cost))
window.FindElement('result').Update(result) #put the result in Textbox
else:
break