Python VSCode setting - Qml extension 설치
문제 editor가 qml을 인식하지 못한다. 그래서 찾아봤다. 일단 예제 추가 공식 문서 https://doc.qt.io/qtforpython-6/tutorials/basictutorial/qml.html Your First QtQuick/QML Application - Qt for Python Previous Styling the Widgets Application doc.qt.io view.qml import QtQuick Rectangle { id: main width: 200 height: 200 color: "green" Text { text: "Hello World" anchors.centerIn: main } } main.py import sys from PySide6.QtWidgets i..
2024.01.02