wxPython

wxPythonPython语言的GUI工具包,作为Python的扩展模块实现,包装了wxWidgets

WxPython
開發者Robin Dunn
Harri Pasanen
首次发布1998年1998[1]
当前版本
  • 4.2.1 (2023年6月8日;穩定版本)[2]
源代码库
编程语言C++ / Python
操作系统跨平台
许可协议wxWindows授權條款
网站wxpython.org

wxPython是跨平台的,开源的。

範例

以下是一個簡單的wxPython的Hello World模塊,描述了在wxPython中的兩個主要物件(主視窗物件和應用程序物件),然後藉由呼叫MainLoop()控制事件驅動系統,而該系統負責該程式的使用者互動部分。

#!/usr/bin/env python
import wx

app = wx.App(False)  # Create a new app, don't redirect stdout/stderr to a window.
frame = wx.Frame(None, wx.ID_ANY, "Hello World") # A Frame is a top-level window.
frame.Show(True)     # Show the frame.
app.MainLoop()

使用wxPython開發的程式

參見

參考資料

  1. . [2007-01-16]. (原始内容存档于2001-11-23).
  2. . 2023年6月8日 [2023年6月30日].
  3. . Google. [28 January 2013]. (原始内容存档于2013-05-25).

延伸閱讀

  • Precord, Cody. . Greenwich: Packt Publishing. December 2010: 308. ISBN 978-1-84951-178-0.
  • Rappin, Noel; Dunn, Robin. . Greenwich: Manning Publications. March 1, 2006: 552. ISBN 978-1-932394-62-7.

外部連結

维基共享资源上的相关多媒体资源:WxPython
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.