본문 바로가기

pyside63

First QtWidgets Application "이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다." "> https://doc.qt.io/qtforpython-6/index.html 사이트의 Tutorial에 대한 내용을 정리한다. Tutorials 를 클릭하여 확인할 수 있다. 출처 :: Qt for Python Tutorials https://doc.qt.io/qtforpython-6/tutorials/index.html Tutorials - Qt for PythonBasic ui files Using .ui files from Designer or QtCreator with QUiLoader and pyside6-uicdoc.qt.io 오늘의 첫번째 예제는 QtWidgets 중 QLabel에 대한 사용예.. 2025. 6. 8.
First QML Application with Pyside6 출처 : https://doc.qt.io/qtforpython-6/gettingstarted.html#getting-started Getting Started - Qt for PythonWhat is Qt Qt, QML, Widgets… What is the difference?doc.qt.io QT Application 중 QML을 이용한 첫번째 예제입니다. 1. QML 작성Example 폴더를 생성하여 Main.qml 이라는 파일로 QML Language file을 생성합니다.import QtQuickimport QtQuick.Controlsimport QtQuick.LayoutsWindow { width: 300 height: 200 visible: true title: "H.. 2025. 5. 23.
Write your first Qt application 출처 : https://doc.qt.io/qtforpython-6/gettingstarted.html#getting-started Getting Started - Qt for PythonWhat is Qt Qt, QML, Widgets… What is the difference?doc.qt.io 오늘은 설치된 Pyside API를 이용한 첫번째 어플리케이션입니다. 텍스트 창과 Click me! 라는 버튼으로 구성된 간단한 어플리케이션입니다.Click me! 버튼을 클릭할 때 마다 인사말이 다음과 같이 변경됩니다.["Hallo Welt" -> "Hei maailma" -> "Hola Mundo" -> "Привет мир" -> "Hallo Welt" ...] Source Codeimport sysimp.. 2025. 5. 23.