mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-08 21:10:06 +01:00
12 lines
385 B
Python
12 lines
385 B
Python
|
|
def ShowSimpleAboutDialog(self, event):
|
|
|
|
info = wx.adv.AboutDialogInfo()
|
|
info.SetName(_("My Program"))
|
|
info.SetVersion(_("1.2.3 Beta"))
|
|
info.SetDescription(_("This program does something great."))
|
|
info.SetCopyright(wx.T("(C) 2007 Me <my@email.addre.ss>"))
|
|
|
|
wx.adv.AboutBox(info)
|
|
|