Skip to main content

pane

Python bindings for Pane — a modern, minimalist Windows UI engine built on WPF. Build real native Windows app UIs from Python: buttons, checkboxes, sliders, text input, tabs, live light/dark theming and accent-color switching, all with a single custom-chrome window.

The engine itself is C#/WPF; this package drives it in-process via pythonnet, so widgets are the real native controls, not a re-implementation.

Windows only (WPF has no cross-platform equivalent). Requires the free .NET 8 Desktop Runtime — not the SDK, just the runtime.

Install

pip install pane-ui

Quick start

import pane

def build(window):
    window.Content = pane.stack(
        pane.text("Hello from Python", size="title", bold=True),
        pane.button("Click me", style="primary", on_click=lambda: print("clicked!")),
        pane.checkbox("Enable notifications", checked=True),
        spacing=12,
        margin=24,
    )

pane.run(build, title="My App")

Run the full widget gallery from the source repo for a tour of everything available: python examples/gallery.py.

Widgets

button, checkbox, radio_button, toggle_switch, text_box, password_box, progress_bar, slider, combo_box, list_box, nav_list, tab_control, expander, group_box, separator, text, color_swatch, menu_bar, plus set_tooltip / set_context_menu helpers.

combo_box, list_box and nav_list pass the selected item itself to on_change/on_select (not its index) - read .SelectedIndex off the returned control if you need that instead:

pane.combo_box(["Newest first", "Oldest first"], on_change=lambda choice: print(choice))

set_context_menu and menu_bar share the same items format: a list of (label, on_click) pairs, (label, sub_items) pairs for a nested submenu, or None for a separator:

pane.menu_bar([
    ("File", [("New", on_new), ("Open", on_open), None, ("Exit", on_exit)]),
    ("Edit", [("Cut", on_cut), ("Copy", on_copy), ("Paste", on_paste)]),
])

Layout

stack(*children, orientation=, spacing=, margin=), grid(children, rows=, columns=), card(*children), sidebar(*children), scroll(child).

Theming

pane.set_theme("light")        # or "dark"
pane.toggle_theme()
pane.set_accent("#4C82F7")     # hex string or (r, g, b) tuple
pane.reset_accent()

Every widget re-themes live, mid-run, no restart needed.

Events

Callbacks adapt to whatever you write - zero args or one:

pane.button("Save", on_click=lambda: print("saved"))
pane.slider(on_change=lambda value: print(value))

Threading

pane.run(builder) builds the window on a dedicated UI thread and blocks until it's closed. Build your widget tree inside builder. To update the UI later from another thread (a timer, a background task), use pane.invoke(fn) to marshal back onto the UI thread.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pane_ui-0.1.2.tar.gz (30.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pane_ui-0.1.2-py3-none-any.whl (31.2 kB view details)

Uploaded Python 3

File details

Details for the file pane_ui-0.1.2.tar.gz.

File metadata

  • Download URL: pane_ui-0.1.2.tar.gz
  • Upload date:
  • Size: 30.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pane_ui-0.1.2.tar.gz
Algorithm Hash digest
SHA256 723055088a20622a01df7f62469d4ed0fc9590c95fe201f1abe303004402c74a
MD5 5aa5cb0ea38a205837469961d4428a0f
BLAKE2b-256 fa86773927dac8ef56ee397429dbc3b11f5621a2cbf33d5cc79db2c65a188f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for pane_ui-0.1.2.tar.gz:

Publisher: publish.yml on HunterGHall/pane

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pane_ui-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: pane_ui-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pane_ui-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 53d2b656fa406570f6557b3df580cce7ecdbb9bd1bb0f9461a051f8708f0e6e4
MD5 91f44885afa7aa090bb4bee776d5c4f7
BLAKE2b-256 d45c8d804b88d4e00539c6f04f27d98e3f42ce7efc299fbaf3f6be1ca27fb805

See more details on using hashes here.

Provenance

The following attestation bundles were made for pane_ui-0.1.2-py3-none-any.whl:

Publisher: publish.yml on HunterGHall/pane

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.7

2 files

0.1.6

2 files

0.1.5

2 files

0.1.4

2 files

0.1.3

2 files

This release

0.1.2 This release

2 files

0.1.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page