PySide

出典: フリー百科事典『ウィキペディア(Wikipedia)』
PySide
作者 Openbossa
開発元 Qt Project英語版
最新版

6.5.2 / 2023年7月26日 (9か月前) (2023-07-26)

プログラミング
言語
Python
対応OS クロスプラットフォーム
ライセンス LGPL
公式サイト www.pyside.org
テンプレートを表示

PySidePythonGUIPySideQtPythonPySidePythonTkinter(GUI)BoostC++PythonBoost.Python使Shiboken[1]

PySide2009QtNokia[2]LGPLNokiaPyQtRiverbank Computing[3]LGPL

PySideLinux/X11Mac OS XWindowsMaemoPySideAndroidOSSymbian OS[4]

Hello World[編集]

import sys
from PySide6.QtCore import Qt
from PySide6.QtWidgets import QApplication, QLabel

if __name__ == "__main__":
    app = QApplication(sys.argv)
    label = QLabel("Hello World", alignment=Qt.AlignCenter)
    label.show()
    sys.exit(app.exec_())

関連項目[編集]

脚注[編集]



(一)^ Shiboken.  Pyside.org. 2010525

(二)^ http://www.pyside.org/2009/08/pyside-has-been-released/

(三)^ FAQ  PySide  Python for Qt.  Pyside.org. 2010525

(四)^ FAQ  PySide  Python for Qt.  Pyside.org. 2013319

外部リンク[編集]