I need to know how to set the ChildrenRect height and width for a grid element??

 Grid {
             id: grid1
             anchors.fill: parent
             rows: 10
             columns: 10


             childrenRect.height: background.height/10
             childrenRect.width: background.width/10

         }

it says its a read-only element that cannot be changed when i try to do this.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You can't set them. The childrenRect properties are calculated from the item's children. The only way to affect them is by setting the children's dimensions. There's no way to set them yourself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.