From f6e60b31b3eb728d9cf3a90f0856b7eea9ff0613 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Fri, 24 Jul 2020 06:01:48 -0400 Subject: [PATCH] Simple demo to launch the "sg.main()" function. Good for getting to the upgrade and other utilities --- DemoPrograms/Demo_Main_Control_Test_Panel.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 DemoPrograms/Demo_Main_Control_Test_Panel.py diff --git a/DemoPrograms/Demo_Main_Control_Test_Panel.py b/DemoPrograms/Demo_Main_Control_Test_Panel.py new file mode 100644 index 00000000..bc4e0987 --- /dev/null +++ b/DemoPrograms/Demo_Main_Control_Test_Panel.py @@ -0,0 +1,9 @@ +import PySimpleGUI as sg + +""" + This is a simple as it gets. Calls the "main" function which is the PySimpleGUI Test Harness + or Control Panel of sorts. Use it to view themes, upgrade your PySimpleGUI to the GitHub version, etc. +""" + +sg.main() +