.QML 파일 확장자
Qt Modeling Language File
| 개발사 | Qt Group |
| 인기도 |
2.9 | 16 투표 |
QML 파일이란 무엇인가요?
A QML file is a source code file created with Qt SDK, a software development IDE used to create user interfaces for desktop and mobile applications. It contains QML source code encoded in UTF-8 format.
추가 정보
QML files start with an import statement since they must import at least one imported library. Below is an example QML source code snippet:
import QtQuick 1.0
Rectangle {
width: 120; height: 160;
resources: [
Component {
id: contactDelegate
Text {
text: modelData.firstName + " " + modelData.lastName
}
}
]
ListView {
anchors.fill: parent
model: contactModel
delegate: contactDelegate
}
}