码迷,mamicode.com
首页 > 其他好文 > 详细

QML::常用属性2

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

标签:ems   mod   int   qml   column   width   idt   bsp   gre   

 

 技术图片

  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

标签:ems   mod   int   qml   column   width   idt   bsp   gre   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!