ukui-menu/qml/main.qml

25 lines
408 B
QML
Raw Normal View History

2022-12-02 15:58:09 +08:00
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
}
}