New Demo showing class interface for User Settings

This commit is contained in:
PySimpleGUI 2020-11-13 11:54:04 -05:00
parent ba01cb31c5
commit 3ef927cdfe
1 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,34 @@
import PySimpleGUI as sg
"""
Demo - Save previously entered strings for Input and Combo elements by using user_settings calls
This demo is the same as the Demo_User_Settings_Remember_Input_and_Combo.py
The difference between the 2 files is that this one users the UserSettings class syntax while the other uses the function calls.
Copyright 2020 PySimpleGUI.org
"""
def main():
settings = sg.UserSettings(path='.') # The settings file will be in the same folder as this program
layout = [[sg.T('This is your layout')],
[sg.T('Enter or choose name'),
sg.Combo(values=sorted(settings.get('-names-', [])),
default_value=settings['-last name chosen-'],
size=(20,1), k='-COMBO-')],
[sg.T('Remembers last value'), sg.In(settings.get('-input-', ''), k='-INPUT-')],
[sg.OK(), sg.Button('Exit')]]
event, values = sg.Window('Pattern for saving with Combobox', layout).read(close=True)
if event == 'OK':
settings['-names-'] = list(set(settings.get('-names-', []) + [values['-COMBO-'],]))
settings['-last name chosen-'] = values['-COMBO-']
settings['-input-'] = values['-INPUT-']
sg.popup(f"You chose {values['-COMBO-']} and input {values['-INPUT-']}",
'The settions dictionary:', settings)
if __name__ == '__main__':
main()