Introducing WinGUI WinGUI is a lightweight native Windows GUI framework for Python, designed for developers who want direct access to Win32 functionality without depending on heavyweight GUI runtimes or external rendering engines. Built with: Python x86-64 Assembly Win32 API ctypes Unlike traditional Python GUI frameworks, WinGUI uses a custom NASM-powered native backend where all GUI logic executes directly through the Windows API. Python acts purely as the interface layer. Features Pure Win32 — no third-party GUI runtime required NASM x86-64 Assembly core Modern native Windows UI Full Unicode support (UTF-8 → UTF-16LE) DPI-aware rendering Zero external Python dependencies OOP and flat-function APIs Context manager support Decorator-based event system Multiple handlers per control Architecture Python Script │ │ ctypes (ABI-safe bridge) ▼ wingui.py │ │ LoadLibrary / native bindings ▼ wingui32.dll (NASM x86-64 Assembly) │ │ Direct Win32 API calls ▼ user32.dll · kernel32.dll · gdi32.dll · comctl32.dll Enter…