コード例 #1
0
ファイル: mainwindow.py プロジェクト: pjaskulski/csv_viewer
 def about(self) -> None:
     """ Show About dialog (info about application)"""
     dlg = AboutDialog()
     dlg.exec_()
コード例 #2
0
 def openAbout(self):
     """Slot for opening the About box."""
     dlg = AboutDialog()
     dlg.show()
     dlg.exec_()
コード例 #3
0
 def openAbout(self):
     """Slot for opening the About box."""
     dlg = AboutDialog()
     dlg.show()
     dlg.exec_()
コード例 #4
0
 def about(self):
     dlg = AboutDialog()
     dlg.exec_()
コード例 #5
0
ファイル: main.py プロジェクト: webmedic/booker
 def on_actionAbout_triggered(self):
     about = AboutDialog()
     about.exec_()
コード例 #6
0
ファイル: main.py プロジェクト: cgt-soft/sw-rune
 def about_action_triggered(self):
     about_window = AboutDialog()
     about_window.exec_()