如何禁用QML TableView过渡动画?

时间:2017-12-19 22:34:18

标签: qt qml qtquick2

我有一个按钮,可以在单击时更改QML TableView的选定行。我的问题是更改行的过渡动画需要太长时间。有没有办法禁用它?

    Rectangle {
        height: 100
        width: 100
        MouseArea {
            anchors.fill: parent
            onClicked: {
                //the table will move few rows per second (too slow)
                agendarClienteTableView.currentRow = agendarClienteTableView.currentRow + 100 
                agendarClienteTableView.selection.clear()
                agendarClienteTableView.selection.select(agendarClienteTableView.currentRow + 100)
                agendarClienteTableView.forceActiveFocus()
            }
        }
    }

1 个答案:

答案 0 :(得分:0)

您可以使用函数positionViewAtRow()切成所需的行。

请参阅以下链接:

ImportError import _ssl on Windows 10 Git Bash with Anaconda Python