행위

"PyQt"의 두 판 사이의 차이

DB CAFE

(새 문서: https://opentutorials.org/module/544/4998)
 
1번째 줄: 1번째 줄:
https://opentutorials.org/module/544/4998
+
참고 : https://opentutorials.org/module/544/4998
 +
 
 +
 
 +
##UI 만들기
 +
<source lang=python>
 +
# coding: utf-8
 +
 
 +
import sys
 +
from PyQt5 import QtWidgets
 +
from PyQt5 import uic
 +
 
 +
class Form(QtWidgets.QDialog):
 +
    def __init__(self, parent=None):
 +
        QtWidgets.QDialog.__init__(self, parent)
 +
        self.ui = uic.loadUi("QT_WIN_01.ui")
 +
        self.ui.show()
 +
 
 +
 
 +
if __name__ == '__main__':
 +
    app = QtWidgets.QApplication(sys.argv)
 +
    w  = Form()
 +
    sys.exit(app.exec())
 +
</source>

2018년 12월 3일 (월) 12:05 판

thumb_up 추천메뉴 바로가기


참고 : https://opentutorials.org/module/544/4998


    1. UI 만들기
# coding: utf-8

import sys
from PyQt5 import QtWidgets
from PyQt5 import uic

class Form(QtWidgets.QDialog):
    def __init__(self, parent=None):
        QtWidgets.QDialog.__init__(self, parent)
        self.ui = uic.loadUi("QT_WIN_01.ui")
        self.ui.show()


if __name__ == '__main__':
    app = QtWidgets.QApplication(sys.argv)
    w   = Form()
    sys.exit(app.exec())