Simplified GUI toolkit for wxPython
WAX is a high-level Python GUI framework built on top of wxPython. It aims to simplify the wxPython API and make GUI programming more accessible to developers, providing cleaner and more Pythonic syntax.
Key Features:
Common Use Cases:
# WAX is not actively maintained or available on PyPI
# Installation usually involves manually downloading sources, ensure wxPython is installed
pip install wxPython
# Simple example assumes installation of WAX and wxPython
# Please adjust imports based on the way WAX was installed
import wax.core
from wax.core import Application, Frame, Panel, Button
class MainFrame(Frame):
def __init__(self):
super().__init__(title="Hello WAX")
panel = Panel(self)
button = Button(panel, label="Click me", event=self.on_click)
panel.AddComponent(button, expand='both')
panel.Pack()
self.AddComponent(panel, expand='both')
self.Pack()
def on_click(self, event):
print("Button clicked!")
app = Application(MainFrame)
app.Run()