2014-10-28 7 views

답변

0

귀하의 질문은 세부 사항에 얇은하지만 AbsoluteLayout를 사용하는 경우 AbsoluteLayoutProperties의 구성원은 다음과 QML과 같이 시각적 인 노드의 배치 위치에 영향을 줄 수 있습니다

Container { 
    layout: AbsoluteLayout {} 

    Label { 
     text: "Label" 
     layoutProperties: AbsoluteLayoutProperties { 
      positionX: 100 
      positionY: 100 
     }    
    } 
}