[迁移]QML与c++交互学习笔记(八) qt c++直接调用QML中的函数, 直接设置属性

声明:因网易博客将关闭,移到此

1.这里主要是介绍,如何在c++中调用QML中的函数和设置QML中的属性的问题

2.具体代码


// UICtest.qml
import Qt 4.7
Rectangle {
    id: mainWidget;
    width: 640
    height: 480
    function callbyc(v)
    {
        mainWidget.color = v;
        return "finish";
    }
    Rectangle{
        id: secondRect;
        x: 100;
        y: 20;
        width: 400;
        height: 300;
        Rectangle{
            x: 10;
            y: 20;
            width: 30;
            height: 40;
            color: "#FF035721"
            Text  {
                objectName: "NeedFindObj";
                anchors.fill: parent;
                text: "";
            }
        }
    }
}

// main.cpp
#include 
#include 
#include 
#include 
#include 

你可能感兴趣的:(工具,qt,qml)