본문 바로가기
반응형

Python/Qt for Python(Pyside6)3

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.
Qt for Python - PySide6 설치 Python을 위한 GUI 개발중 Qt를 이용한 GUI 개발관련 글들을 포스팅 하려합니다.PyQt 가 많이 알려졌지만, 공식지원하는 PySide6 에 대한 글을 공식사이트에 있는 내용을 요약 정리할 예정입니다. 첫번째 내용은 간략한 PySide6에 대한 내용과 설치 방법입니다. 출처 :: https://doc.qt.io/qtforpython-6/index.html Qt for PythonPackages, installation, and details.doc.qt.io Qt for Python : QT Application 작성을 위한 공식적인 QT를 위한 Python binding.PySide6 : Python Application에서 Qt6 APIs를 사용가능Shiboken6 : C++ project.. 2025. 3. 27.