mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-04 11:00:07 +01:00
- Latest Phoenix development integrated in the documentation builder; - Added the latest `BitmapComboBox`, `RichToolTip` etc..., with their sample; - Adapted the existing `adv` samples to use `wx.adv` in the code; - Fixed wrong rendering of various snippets. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71692 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
14 lines
482 B
Python
14 lines
482 B
Python
|
|
def OnAbout(self, event):
|
|
|
|
aboutInfo = wx.adv.AboutDialogInfo()
|
|
aboutInfo.SetName("MyApp")
|
|
aboutInfo.SetVersion(MY_APP_VERSION_STRING)
|
|
aboutInfo.SetDescription(_("My wxPython-based application!"))
|
|
aboutInfo.SetCopyright("(C) 1992-2012")
|
|
aboutInfo.SetWebSite("http:#myapp.org")
|
|
aboutInfo.AddDeveloper("My Self")
|
|
|
|
wx.adv.AboutBox(aboutInfo)
|
|
|