Add DearPyGUI observer/server UI and demo launcher

This commit is contained in:
administrator
2026-06-04 08:57:36 +02:00
parent e86c05a885
commit aa17d7ffd3
9 changed files with 869 additions and 8 deletions

14
startdemo.bat Normal file
View File

@@ -0,0 +1,14 @@
@echo off
setlocal
set "ROOT=%~dp0"
set "PY_SCRIPT=%ROOT%startdemo.py"
if not exist "%PY_SCRIPT%" (
echo Script non trovato: "%PY_SCRIPT%"
exit /b 1
)
python "%PY_SCRIPT%"
set "EXIT_CODE=%ERRORLEVEL%"
exit /b %EXIT_CODE%