как убрать слово About на моем AboutDialogInfo - PullRequest
0 голосов
/ 05 октября 2019

Я разрабатываю приложение с wxpython и хочу удалить слово About при появлении AboutDialogInfo.

import wx
import wx.adv
class MyFrame(wx.Frame):
     def __init__(self):
          About(self)
     def About(self):
        aboutInfo = wx.adv.AboutDialogInfo()
             aboutInfo.Name = ("Mome")
             aboutInfo.SetVersion("0.0.1")
             aboutInfo.SetDescription(
                 "Lorem Ipsum est un générateur de faux textes aléatoires\n"
                 "Lorem Ipsum est un générateur de faux textes aléatoires\n"
                 "Lorem Ipsum est un générateur de faux textes aléatoires\n"
                 )
        aboutInfo.SetCopyright("(C) 2019")
        aboutInfo.SetWebSite("http://www.google.com")
        aboutInfo.AddDeveloper("My Name")
        aboutInfo.SetLicence("This programm is .....")
        wx.adv.AboutBox(aboutInfo)

enter image description here

...