當前位置: 首頁>>代碼示例>>Python>>正文


Python MainWindow.mainwindow方法代碼示例

本文整理匯總了Python中gui.MainWindow.mainwindow方法的典型用法代碼示例。如果您正苦於以下問題:Python MainWindow.mainwindow方法的具體用法?Python MainWindow.mainwindow怎麽用?Python MainWindow.mainwindow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在gui.MainWindow的用法示例。


在下文中一共展示了MainWindow.mainwindow方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: setUp

# 需要導入模塊: from gui import MainWindow [as 別名]
# 或者: from gui.MainWindow import mainwindow [as 別名]
 def setUp(self):
     self.app = QApplication(sys.argv)
     self._principale = MainWindow.mainwindow("0.0.0")
     self._about = aboutDialog.aboutDial(self._principale)
     self._loginwidget = loginDialog.Login(self._principale)
開發者ID:portaloffreedom,項目名稱:ThinkZone,代碼行數:7,代碼來源:test.py

示例2: print

# 需要導入模塊: from gui import MainWindow [as 別名]
# 或者: from gui.MainWindow import mainwindow [as 別名]
__VERSION__ = "0.0.9"

if __name__ == '__main__':
    argparser = argparse.ArgumentParser(prog="Thinkzone",version = __VERSION__)
    grupporeg = argparser.add_argument_group("Opzioni registrazione")
    gruppoescl = argparser.add_mutually_exclusive_group(required = True)
    gruppoescl.add_argument("-g","--gui",action="store_true",help="Fa partire l'interfaccia grafica.")
    gruppoescl.add_argument("-r",nargs=2,metavar=("username","password"),help="Registra un utente.")
    grupporeg.add_argument("-a","--address",metavar="hostname",help="Hostname del server per la registraizone.")
    grupporeg.add_argument("-p","--port",metavar="porta",type=int,default=4242,help="La porta del server a cui connettersi.")
    arogmi = argparser.parse_args(sys.argv[1:])
    if(arogmi.gui):
        print('Starting gui...')
        app = QtGui.QApplication(sys.argv)
        finestra = MainWindow.mainwindow(__VERSION__)
        finestra.show()
        app.exec()
        print('exit')
    else:
        username = arogmi.r[0]
        password = arogmi.r[1]
        porta = arogmi.port
        hostname = arogmi.address
        connettore = Comunicazione.comunicatore()
        connettore.registrati(hostname, porta, username, password)
        if(connettore._registered):
            print('Registrazione completata correttamente')
        else:
            print('Registrazione non effettuata. Consulta il file di log per ulteriori informazioni.')
開發者ID:portaloffreedom,項目名稱:ThinkZone,代碼行數:31,代碼來源:main.py


注:本文中的gui.MainWindow.mainwindow方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。