Chapter 1: QML type attributes

 

basic type

Official: https://doc.qt.io/qt-5/qmlbasictypes.html

int, double, bool, string,var, variant, color, real, vector3d, url, time, rect, size, enumeration, font, date, point, list, action, alias

Example:

property real contentYOnFlickStarted: 0; 
property var aboutDlg: null; 
property color textColor: "green";

 

QML and C++ data type conversion

 

 

Guess you like

Origin blog.csdn.net/qq_40602000/article/details/109276808