Unable to assign QQuickRootItem to double
Qt Quick 프로그래밍을 하던 중에 이런 오류가 나왔다. 찾아보니 Rectangle의 width와 height 값을 Window에서 parent로 값을 가져오려고 해서 나오는 오류였다. Window { width: 640 height: 480 visible: true Rectangle { id: rect width: parent height: parent } } 해결 방법은 여러가지이다. anchors.fill : parent 를 대신 사용한다. window에 id 값을 지정해서 id.width 값과 id. height 값을 받는다. 참고 https://stackoverflow.com/questions/30121552/qml-unable-to-assign-qquickitem-to-qquickancho..
2021.07.31