1 Star 0 Fork 0

toby20130333/QMLPathView

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
EveryPage.qml 1.31 KB
一键复制 编辑 原始数据 按行查看 历史
toby20130333 提交于 2015-06-03 13:03 . Add new pathview page
import QtQuick 2.0
import QtQuick.Controls 1.3
import QtQuick.Controls.Styles 1.1
Rectangle {
width: 500
height: 200
signal signalClick();
signal signalBack();
DDuiBtn{
id:topContorl
anchors.horizontalCenter: parent.horizontalCenter
anchors.top: parent.top
width: parent.width
height: 30
myTxt: "第一页"
onSignalBtnBack: {
signalBack();
}
onSignalBtnClick: {
signalClick();
}
}
PathView {
id: view
anchors.left: parent.left
anchors.right: parent.right
anchors.top: topContorl.bottom
anchors.bottom: parent.bottom
model: 30
path: Path {
startX: 0
startY: 0
PathQuad {
x: view.width
y: 0
controlX: view.width / 2
controlY: view.height
}
}
delegate: Image {
width: 32
height: 32
source:returnSource(index)// "http://download.easyicon.net/png/1174866/32/"
function returnSource(index){
var tmp = "http://download.easyicon.net/png/";
var addNumber = 1174856+index;
return tmp+addNumber+"/32/"
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/duoduozhijiao/QMLPathView.git
git@gitee.com:duoduozhijiao/QMLPathView.git
duoduozhijiao
QMLPathView
QMLPathView
master

搜索帮助