查看完整版本: [-- zhengtianzuo系列-Qml列表项拖放 --]

QTCN开发网 -> Qt代码秀 -> zhengtianzuo系列-Qml列表项拖放 [打印本页] 登录 -> 注册 -> 回复主题 -> 发表主题

zhengtianzuo 2017-11-25 15:01

zhengtianzuo系列-Qml列表项拖放

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

big_mouse 2020-04-23 09:21


查看完整版本: [-- zhengtianzuo系列-Qml列表项拖放 --] [-- top --]



Powered by phpwind v8.7 Code ©2003-2011 phpwind
Gzip disabled