Qt5.12最小化/最大化应用程序窗口中断锚点

时间:2019-01-24 10:51:04

标签: qt qml

我面对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"
   }
}

我按下最大化窗口按钮,然后最小化并看到下图: enter image description here

然后再次最大化和最小化,情况似乎变得更糟: enter image description here

我在做什么错了?

0 个答案:

没有答案