`
sony-soft
  • 浏览: 1023559 次
文章分类
社区版块
存档分类
最新评论

《QML HelloWorld》学习笔记

 
阅读更多
原文

http://qt-project.org/doc/qt-4.8/qml-tutorial.html


运行效果


步骤
1、创建QML文件(在QtCreator中根据向导创建或者直接用文本文件另存为)
2、源码(..\Examples\4.7\declarative\tutorials\helloworld)

import QtQuick 1.0
//![3]
//![1]
Rectangle {
   id: page
   width: 500; height: 200
   color: "lightgray"
//![1]
//![2]
   Text {
       id: helloText
       text: "Hello world!"
       y: 30
       anchors.horizontalCenter: page.horizontalCenter
       font.pointSize: 24; font.bold: true
   }
//![2]
}


3、运行


4、原理

  • Import
  • Rectangle
  • Text
属性y表示在父元素下多少像素,此处是30像素
属性anchors.horizontalCenter表示水平居中的位置,此处是页面中心

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics