本文介绍了如何滚动到QML TreeView中的特定行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

TreeView中,通过单击选择一行.但是我想通过指示行QModelIndexroleName将行集中在TreeView中.

In TreeView, selecting a row by clicking it.But I want to focus the row in TreeView by indicating the row QModelIndex and roleName.

我在ListView中发现了类似的功能:

I found similar function in ListView:

positionViewAtIndex(int index, PositionMode mode)

如何在TreeView中执行此操作?

推荐答案

尝试使用隐藏变量__listView.

Try to use hidden variable __listView.

__listView.positionViewAtIndex(row, mode)

这篇关于如何滚动到QML TreeView中的特定行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-16 05:06