Qml列表项拖放

来源:互联网 发布:python字符串处理 编辑:程序博客网 时间:2024/06/05 05:59

ListModel的move(int from, int to, int n)
可以将列表项进行移动
根据鼠标的拖动位置, 可以判断出需要移动项的序号

                    var lastIndex = listview.indexAt(mousearea.mouseX + listItem.x,                                                     mousearea.mouseY + listItem.y);                    if ((lastIndex < 0) || (lastIndex > listModel.rowCount()))                        return;                    if (index !== lastIndex){                        listModel.move(index, lastIndex, 1);                    }                    listItem.toIndex = lastIndex;

这里写图片描述

需要完整代码请访问QtQuickExamples

原创粉丝点击