首页 > 其他 > 详细

QML::常用属性2

时间:2020-04-09 00:37:06      阅读:75      评论:0      收藏:0      [点我收藏+]

 

 技术分享图片

  Flow {
           anchors.fill: parent
           anchors.margins: 10  //Text 间隔
           spacing: 30   //行距

           Text { text: "Text"; font.pixelSize: 40 }
           Text { text: "items"; font.pixelSize: 40 }
           Text { text: "flowing"; font.pixelSize: 40 }
           Text { text: "inside"; font.pixelSize: 40 }
           Text { text: "a"; font.pixelSize: 40 }
           Text { text: "Flow"; font.pixelSize: 40 }
           Text { text: "item"; font.pixelSize: 40 }
       }

 

技术分享图片

 Rectangle {
        width: 400; height: 200; color: "black"

        Grid {
            x: 5; y: 5
            rows: 5; columns: 5; spacing: 10

            Repeater { model: 8
                Rectangle { width: 70; height: 70
                    color: "lightgreen"

                    Text { text: index
                        font.pointSize: 30
                        anchors.centerIn: parent } }
            }
        }
    }

 

技术分享图片

 Item {
        Rectangle {
            opacity: 0.5
            color: "red"
            width: 100; height: 100
            Rectangle {
                color: "blue"
                x: 50; y: 50; width: 100; height: 100
            }
        }
    }

 

QML::常用属性2

原文:https://www.cnblogs.com/osbreak/p/12663946.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!