This commit is contained in:
PySimpleGUI 2020-05-20 07:27:25 -04:00
parent b06d460e2d
commit ba10e1dccd
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import PySimpleGUI as sg
import PIL.Image
"""
Demo - Splash Screen
@ -13,4 +14,3 @@ IMAGE_FILE = r'A:\- TEMP 2019 -\PySimpleGUI_Logo.png'
DISPLAY_TIME_MILLISECONDS = 4000
sg.Window('Window Title', [[sg.Image(IMAGE_FILE)]], transparent_color=sg.theme_background_color(), no_titlebar=True, keep_on_top=True).read(timeout=DISPLAY_TIME_MILLISECONDS, close=True)