2017-10-10 49 views

回答

0

找到了答案。

模板文件Some.qml:

import QtQuick 2.0 

Item { 
    width: 500 
    height: 500 
    property alias content: column.children 

    Column { 
     id: column 
     anchors.fill: parent 
    } 
} 

,並用它

import QtQuick 2.0 

    Some { 
     content: Rectangle { 
      width: parent.width 
      height: 100 
      color: "red" 
     } 
    } 
+0

可能要考慮一個不同的名字,一個'Container'組件已存在於快速控制2.2,它的行爲不同,這可能會造成一些混淆 –

相關問題