qml-附加信号和属性

附加信号 attached signals


completed()

        在对象被实例化后发出。 一旦建立完整的 QML 环境,这可用于在启动时执行脚本代码。
对应的处理程序是 onCompleted。 它可以在任何对象上声明。 运行 onCompleted 处理程序的顺序未定义。

 Rectangle {
     Component.onCompleted: console.log("Completed Running!")
     Rectangle {
         Component.onCompleted: console.log("Nested Completed Running!")
     }
 }


destruction()

        在对象开始销毁时发出。 
        对应的处理程序是 onDestruction。 它可以在任何对象上声明。 运行 onDestruction 处理程序的顺序未定义。

附加属性 attached properties

scrollbar:


ScrollBar.horizontal : ScrollBar

此属性将水平滚动条附加到 Flickable。
 

ScrollBar.vertical : ScrollBar

This property attaches a vertical scroll bar to a Flickable.
 

例如:

import QtQuick 2.12
import QtQuick.Window 2.12
import QtQuick.Controls 2.0
import QtQuick.Layouts 1.12
import QtQml 2.12
Window {
    id:root
    width: 400
    height: 300
    visible: true
    title: qsTr("Hello World")


    Flickable {
         anchors.fill: parent

         contentWidth: image.width
         contentHeight: image.height

         Image{
            id:image
            source: "qrc:/test.png"
         }

         ScrollBar.horizontal: ScrollBar { id: hbar; active: vbar.active }
         ScrollBar.vertical: ScrollBar { id: vbar; active: hbar.active }
     }

}

效果:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值