0
TreeView
で何かを選択/クリックすると、QML TreeView
の行番号を取得する方法はありますか?たとえば、TableView
の場合はcurrentRow
を使用します。 TreeView
に相当するものはありますか?QML TreeViewの現在の行を取得する方法は?
TreeView
で何かを選択/クリックすると、QML TreeView
の行番号を取得する方法はありますか?たとえば、TableView
の場合はcurrentRow
を使用します。 TreeView
に相当するものはありますか?QML TreeViewの現在の行を取得する方法は?
currentIndex
を使用してください。 documentationの詳細例えば
:
TreeView {
id: myTree
...
model: myModel
onCurrentIndexChanged: console.log("current index: " + currentIndex
+ " current row: " + currentIndex.row)
TableViewColumn {
title: "title1"
role: "role1"
}
TableViewColumn {
title: "title2"
role: "role2"
}
onClicked: {
console.log("clicked", index)
}
}
あなたはGitHubの中the complete exampleを確認することができます。