zoukankan      html  css  js  c++  java
  • QML学习笔记之二

     1 //必须要导入,否则以下元素将无效
     2 import QtQuick 1.1
     3 
     4 //对象一:矩形Rectangle
     5 Rectangle {
     6      798
     7     height: 111
     8     //整个Rectangle的背景色
     9     color:"gray"
    10     //对象二:图像Image
    11     Image{
    12         source: "images/main_frame/background.png"
    13         //位于调试工具窗口中央部分
    14         anchors.centerIn: parent
    15     }
    16 }
     1 import QtQuick 1.1
     2 
     3 Item{
     4     Text{
     5         id:text1
     6         text:"hello world"
     7     }
     8     Text{
     9         id:text2
    10         text:text1.text
    11     }
    12 }
    1 Text{
    2         id:text1
    3         text:"hello world"
    4         opacity: 0.5
    5     }
     1 Item{
     2     Text{
     3         id:text1
     4         text:"hello world"
     5         opacity: 0.5
     6     }
     7     //Defines the item's position and size relative to its parent.
     8     x:10.5 //a 'real' property
     9     //This property holds the name of the current state of the item.
    10     state: "datail" // a 'string' property
    11     focus: true // a 'bool' property
    12 }
  • 相关阅读:
    flexible
    arcgis
    vue 语法糖
    sass 的安装 编译 使用
    nodeJs
    微信小程序
    linux cgroups 简介
    git命令
    sublime笔记
    工程优化学习(进退法、黄金分割法、二次插值法、三次插值法、最速下降法)
  • 原文地址:https://www.cnblogs.com/wangzhiyu811/p/3199771.html
Copyright © 2011-2022 走看看