码迷,mamicode.com
首页 > 其他好文 > 详细

qml 练习一

时间:2021-05-24 10:03:58      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:turn   button   ext   range   fir   练习   qml   quick   extc   

import QtQuick 2.9 // 导入模块
import QtQuick.Window 2.2
import QtQuick.Controls 2.2 // 导入的模块

Window {
    visible: true
    width: 640
    height: 480
    title: qsTr("Hello World")
/*
    // 不可见元素
    Column{
        Button {
            text: qsTr("btn text")

        }
        Label {
            text: qsTr("red")
            color: "red"
            font.pointSize: 20
        }
        RangeSlider {
            from: 1
            to: 100
            first.value: 25
            second.value: 75
        }

    }
    Button {
       text: qsTr("我是一个按钮")
       //槽函数
       onClicked: {
           console.log("btn click")
           text = qsTr("我改变了")
       }
       onTextChanged: {
           console.log("new text",text)
       }

    }
    */

    Button {
        text: qsTr("我是按钮")
        // 槽函数
        onClicked: showAddResult(add(10,20))
        // 方法
        function add(num1,num2){
            return num1+num2
        }
        function showAddResult(result){
            console.log(result)
        }

    }
}

qml 练习一

标签:turn   button   ext   range   fir   练习   qml   quick   extc   

原文地址:https://www.cnblogs.com/lodger47/p/14770601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!