16 lines
276 B
QML
16 lines
276 B
QML
|
import QtQuick 2.0
|
||
|
|
||
|
Item {
|
||
|
Rectangle {
|
||
|
anchors.fill: parent
|
||
|
color: "yellow"
|
||
|
|
||
|
MouseArea {
|
||
|
anchors.fill: parent;
|
||
|
onClicked: {
|
||
|
mainWindow.isFullScreen = !mainWindow.isFullScreen;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|