に別のコマンドを追加したいitemDelegate.onClick
。
これが私のコードです:
ListView {
id: beam_viewer
x: 8
y: 18
width: 188
height: 374
delegate: ItemDelegate {
id: delegate_item
width: 180
height: 25
Text {
text: modelData
anchors.verticalCenter: parent.verticalCenter
}
onClicked: img_footprint.source = applicationPath +
"footprints/" + modelData + ".webp"
}
}
画像ソースの変更に使用 し、 myText.textonClicked
に使用したいと考えています。modelData
私は ui.qml を使用していますが、 onClicked の後に { } を使用することは許可されていませんjavascript
。
onClicked に追加するにはどうすればよいですかmyText.text = modelData
。
ありがとうございました!