我正在使用Qt Quitck Control 2.0。我想将图像和文本添加到Combobox列表中。图像留下,文字是严格的。怎么做
答案 0 :(得分:2)
您编写自定义委托:
delegate: ItemDelegate {
id: delegatRoot
width: control.width
height: 40
Row {
Image {
width: delegateRoot.width / 2
height: 40
source: 'my/image/path.png'
}
Text {
text: 'myText'
}
}
}
与在任何视图中一样,您可以使用model.roleName
从ListModel
获取值。