다른 명령
데브카페에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.
- 2025년 6월 11일 (수) 01:04 Devcafe 토론 기여님이 PyQt 문서를 삭제 취소했습니다 (판 1개)
- 2025년 3월 19일 (수) 00:18 Devcafe 토론 기여님이 PyQt 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=PyQt&action=delete내용: "참고 : https://opentutorials.org/module/544/4998 == Pyqt5 레퍼런스 == https://www.riverbankcomputing.com/static/Docs/PyQt5/index.html # Hello World 화면 만들기 ## ui화면 만들기 QT디자이너를 이용하여 윈도우 폼을 생성한후 "xxxx.ui" 파일로 저장 (.ui파일은 xml파일임) pyuic5 -x xxxx.ui -o xxxx.py ----- ### UI 만들기 <source lang=python> # c...". 유일한 편집자는 "Devcafe" (토론))
- 2024년 10월 4일 (금) 23:10 Devcafe 토론 기여님이 PyQt 문서를 만들었습니다 (새 문서: 참고 : https://opentutorials.org/module/544/4998 == Pyqt5 레퍼런스 == https://www.riverbankcomputing.com/static/Docs/PyQt5/index.html # Hello World 화면 만들기 ## ui화면 만들기 QT디자이너를 이용하여 윈도우 폼을 생성한후 "xxxx.ui" 파일로 저장 (.ui파일은 xml파일임) pyuic5 -x xxxx.ui -o xxxx.py ----- ### UI 만들기 <source lang=python> # coding: utf-8 import sys from PyQt5 import QtWidgets from PyQt5 import uic class Form(QtWidget...)