ukui-menu/qml/AppUI/FullScreenUI.qml

16 lines
276 B
QML
Raw Normal View History

2022-12-23 11:32:21 +08:00
import QtQuick 2.0
Item {
Rectangle {
anchors.fill: parent
color: "yellow"
MouseArea {
anchors.fill: parent;
onClicked: {
mainWindow.isFullScreen = !mainWindow.isFullScreen;
}
}
}
}