dotherside/test/main.qml

14 lines
257 B
QML
Raw Normal View History

import QtQuick 2.5
import QtQuick.Controls 1.4
ApplicationWindow {
width: 100
height: 100
objectName: "testWindow"
2016-01-16 10:29:35 +00:00
Component.onCompleted: {
visible = true
console.log(testObject)
console.log(testObject.name)
}
}