10 lines
172 B
QML
10 lines
172 B
QML
|
import QtQuick 2.3
|
||
|
import QtQuick.Controls 1.2
|
||
|
|
||
|
ApplicationWindow {
|
||
|
width: 100
|
||
|
height: 100
|
||
|
objectName: "testWindow"
|
||
|
Component.onCompleted: visible = true
|
||
|
}
|