代码拉取完成,页面将自动刷新
import PySimpleGUI as sg
"""
Demo - Basic window design pattern
* Creates window in a separate function for easy "restart"
* Saves theme as a user variable
* Puts main code into a main function so that multiprocessing works if you later convert to use
Copyright 2020-2023 PySimpleSoft, Inc. and/or its licensors. All rights reserved.
Redistribution, modification, or any other use of PySimpleGUI or any portion thereof is subject to the terms of the PySimpleGUI License Agreement available at https://eula.pysimplegui.com.
You may not redistribute, modify or otherwise use PySimpleGUI or its contents except pursuant to the PySimpleGUI License Agreement.
"""
# ------------------- Create the window -------------------
def make_window():
# Set theme based on previously saved
sg.theme(sg.user_settings_get_entry('theme', None))
# ----- Layout & Window Create -----
layout = [[sg.T('This is your layout')],
[sg.OK(), sg.Button('Theme', key='-THEME-'), sg.Button('Exit')]]
return sg.Window('Pattern for theme saving', layout)
# ------------------- Main Program and Event Loop -------------------
def main():
window = make_window()
while True:
event, values = window.read()
if event == sg.WINDOW_CLOSED or event == 'Exit':
break
if event == '-THEME-': # Theme button clicked, so get new theme and restart window
ev, vals = sg.Window('Choose Theme', [[sg.Combo(sg.theme_list(), k='-THEME LIST-'), sg.OK(), sg.Cancel()]]).read(close=True)
if ev == 'OK':
window.close()
sg.user_settings_set_entry('theme', vals['-THEME LIST-'])
window = make_window()
window.close()
if __name__ == '__main__':
main()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。