25 lines
408 B
QML
25 lines
408 B
QML
|
import QtQuick 2.12
|
||
|
import QtQuick.Window 2.12
|
||
|
import QtQuick.Controls 2.0
|
||
|
|
||
|
import AppUI 1.0 as AppUI
|
||
|
import AppControls2 1.0 as AppControls2
|
||
|
|
||
|
Window {
|
||
|
visible: true
|
||
|
width: 600
|
||
|
height: 480
|
||
|
title: qsTr("Hello World")
|
||
|
|
||
|
AppUI.AppTest {
|
||
|
width: 200
|
||
|
height: 480
|
||
|
}
|
||
|
|
||
|
AppControls2.AppTest {
|
||
|
x: 400
|
||
|
width: 200
|
||
|
height: 480
|
||
|
}
|
||
|
}
|