wxPython
此條目需要擴充。 (2015年9月26日) |
wxPython是Python語言的GUI工具包,作為Python的擴充模組實現,包裝了wxWidgets。
開發者 | Robin Dunn Harri Pasanen |
---|---|
首次發佈 | 1998年[1] |
目前版本 | 4.1.1[2](2020年11月21日 ) |
原始碼庫 | |
程式語言 | C++ / Python |
作業系統 | 跨平台 |
許可協定 | wxWindows授權條款 |
網站 | wxpython |
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開發的程式
- BitTorrent,一種對等的BitTorrent應用程式。
- Google Drive,Google雲端儲存系統的桌面客戶端[3]。
- GRASS GIS,一種免費且開源的地理資訊系統。
- PlayOnLinux,一個Wine軟件相容層的圖形化前端。
參見
參考資料
- ^ wxPython 0.3 announcement on Yahoo Groups. [2007-01-16]. (原始內容存檔於2001-11-23).
- ^ Robin. wxPython 4.1.1 Released. wxPython. 2020-11-21 [2020-11-21]. (原始內容存檔於2021-01-17) (英語).
- ^ Open source components and licenses. Google. [28 January 2013]. (原始內容存檔於2013-05-25).
延伸閱讀
- Precord, Cody. wxPython 2.8 Application Development Cookbook. Greenwich: Packt Publishing. December 2010: 308. ISBN 978-1-84951-178-0.
- Rappin, Noel; Dunn, Robin. wxPython in Action. Greenwich: Manning Publications. March 1, 2006: 552. ISBN 978-1-932394-62-7.