qml游戏设置背景图片全屏自适应

qml游戏设置背景图片全屏自适应,第1张

方法/步骤分步阅读

1

/6

我们进入和平精英后点击下方的【仓库】

2

/6

然后大家点击左边的【装备】

3

/6

接着大家点击页面上红色箭头指向处

4

/6

之后我们点击选择新的主题背景

5

/6

现在我们就可以看到这个主题背景的预览界面

6

/6

最后我们退回主页面,这样我们的和平精英游戏主题背景图片就更换完成啦

你可以用itemDelegate 或者 在TableViewColumn中的delegate进行赋色 或者 rowDelegate

将下面代码 注释部分打开

TableView {

backgroundVisible : false

contentFooter: Rectangle{

width: 200height: 50

color:"#600000FF" //"blue"

}

contentHeader:Rectangle{

width: 200height: 50

color:"#60FFFF00"//"yellow"

}

/*a*/

//itemDelegate: Rectangle{

//width: 200

//height: 50

//color:"#6000FF00" //"green"

//border.width: 1

//border.color: "black"

//Text {

// anchors.verticalCenter: parent.verticalCenter

// color: styleData.textColor

// elide: styleData.elideMode

// text: styleData.value

// }

//}

/*a*/

/*b*/

rowDelegate:Rectangle{

width: 200

height: 50

color:"#90000000"

Text{

text: styleData.alternate

anchors.centerIn: parent

}

Rectangle{

anchors.bottom: parent.bottomheight: 1width: parent.width

}

}

/*b*/

TableViewColumn { role: "title"title: "Title"width: 100

/*c*/

//delegate: Rectangle{

//color:"#60FF0000" //"red"

//Text{

//anchors.centerIn: parent

//text: styleData.value

//}

//}

/*c*/

}

TableViewColumn { role: "author"title: "Author"width: 100

//delegate: Rectangle{

//color:"#60FF0000" //"red"

//Text{

//anchors.centerIn: parent

//text: styleData.value

//}

//}

}

model: ListModel{

ListElement { title: "Title"author:"Author"}

ListElement { title: "Title"author:"Author"}

}

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11866948.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-19
下一篇 2023-05-19

发表评论

登录后才能评论

评论列表(0条)

保存