博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Introduction to the QML language
阅读量:6647 次
发布时间:2019-06-25

本文共 598 字,大约阅读时间需要 1 分钟。

 

Objects are specified by their type, followed by a pair of braces. Object types always begin with a capital letter.

Objects 类型都是大写开头。

 

Property naming

Properties begin with a lowercase letter (with the exception of Attached Properties).

全部小写开头,除了Attatched properties

 

List properties

Item {

    children: [
        Image {},
        Text {}
    ]
}

Grouped Properties

Attached Properties

可以参考wpf的附加属性:

XAML开发入门之附加属性和绑定属性

 

Signal Handlers

All signal handlers begin with "on".

MouseArea {

    acceptedButtons: Qt.LeftButton | Qt.RightButton
    onPressed: if (mouse.button == Qt.RightButton) console.log("Right mouse button pressed")
}

转载地址:http://afuto.baihongyu.com/

你可能感兴趣的文章
sqlserver 中EXEC和sp_executesql使用介绍
查看>>
Javascript- Javascript学习
查看>>
day 5.基本数据类型:字典(dict)
查看>>
python 机器学习之岭回归
查看>>
Centos7通过Docker安装Sentry(哨兵)
查看>>
加入收藏兼容ie和火狐
查看>>
Linux常用的网络命令
查看>>
树莓派蓝牙连接
查看>>
设计师的视觉设计五项修炼
查看>>
php的错误级别
查看>>
eclipse修改android项目的apk包名类名
查看>>
斐讯路扫地机器人怎么关机_扫地机器人使用方法,使用教程
查看>>
java 二元一次方程式_JAVA求解一元一次二次方程
查看>>
上车是什么意思_“上车饺子下车面”,是什么意思?看完心里暖暖的
查看>>
anaconda安装python3消失_Python学习第47课-安装Python以及anaconda介绍
查看>>
centos7中编译安装nodejs_Docker(一)CentOS7中安装Docker视频教程
查看>>
ug装配绕轴旋转_UG模具设计培训就到新科教育
查看>>
Unix整理笔记-超级无敌常用命令杂谈1-里程碑M6
查看>>
CloudStack4.1.1升级CloudPlatForm4.2.0实践手册
查看>>
Centos安装各种数据分析库,numpy,pandas,matplotlib,seaborn,scipy
查看>>