def onHelpAbout(self): dialog = DialogAbout(self) dialog.exec_()
def menuActionAbout(self): """Click menu about""" dialog = DialogAbout(self) dialog.display()
def openAboutDialog(self): dialog = DialogAbout(self) dialog.exec_()
def about(self): about = DialogAbout(self) about.show()
def onActionAbout(self): dialog = DialogAbout(self) dialog.exec_()