このqmlコードでは:
Component {
id: userdelegate
PictureBox {
...
icon: model.icon
icon.heigth: 50
}
}
PictureBox
PictureBox.qml
この方法でシステムファイルから取得されます。
...
Image {
id: icon
...
width: parent.width; height: 150
}
qml を実行すると、タイトルにエラーが表示されます。を使用する必要がありますPictureBox.qml
が、変更できません。PictureBox.qml
アイコンのデフォルトの高さの値を上書きするにはどうすればよいですか?