我面对ApplicationWindow的一个非常奇怪的行为。这是我的代码:
import QtQuick 2.12
import QtQuick.Controls 2.5
ApplicationWindow {
visible: true
width: 640
height: 480
title: qsTr("App test")
Rectangle {
width : parent.width/2
height : parent.height/2
anchors.centerIn: parent
color : "red"
}
}
我在做什么错了?