QML Loader Element

QML Loader Element用于动态加载基于Item的子树,可从URL或Component加载。适用于延迟组件创建,如按需创建或性能考虑。Loader的大小行为、接收加载项信号、焦点及键盘事件管理等方面进行了详细描述。
摘要由CSDN通过智能技术生成

QML Loader Element

The Loader item allows dynamically loading an Item-based subtree from a URL or Component. More...

Loader允许从URL或Component动态加载基于Item的子树。

Inherits Item

继承于Item

Properties

Signals

Detailed Description

Loader is used to dynamically load visual QML components. It can load a QML file (using the source property) or a Component object (using thesourceComponent property). It is useful for delaying the creation of a component until it is required: for example, when a component should be created on demand, or when a component should not be created unnecessarily for performance reasons.

Loader元素用来动态加载可见的QML组件。它可以用来加载一个QML文件(使用source属性),也可以用来记载一个组件(Component)对象(使用sourceComponent属性)。Loader主要是用来在必要时候创建组件。例如,当有需求时组件被创建,由于性能原因可能不需要被创建。

Here is a Loader that loads "Page1.qml" as a component when the MouseArea is clicked:

下面的例子, 当单击MouseArea时,Loader加载“page1.qml”:

[javascript] view plain copy print ?
  1. import QtQuick 1.0  
  2.   
  3. Item {  
  4.     width: 200; height: 200  
  5.   
  6.     Loader { id: pageLoader }  
  7.   
  8.     MouseArea {  
  9.         anchors.fill: parent  
  10.         onClicked: pageLoader.source = "Page1.qml"  
  11.     }  
  12. }  
 import QtQuick 1.0

 Item {
     width: 200; height: 200

     Loader { id: pageLoader }

     MouseArea {
         anchors.fill: parent
         onClicked: pageLoader.source = "Page1.qml"
     }
 }

 

The loaded item can be accessed using the item property.

已经加载的项可以通过item属性来访问。

If the source or sourceComponent changes, any previously instantiated items are destroyed. Setting source to an empty string or setting sourceComponent toundefined destroys the currently loaded item, freeing resources and leaving the Loader empty.

当source或是sourceComponent属性发生变化时,之前加载的项都会被销毁,将source或是sourceComponent属性设置成空字符串可以销毁当前已经
加载的项,释放Loder所占用的资源。

(这里就等同于C++中的delete,但又有点不一样,因为delete之后就不可用了,如果要用需要再new出一个对象,而将source或是sourceComponent属性设置成空字符
串后,释放了资源,但仍然可以再重新给source或是sourceComponent属性赋值,这样还可以用。)

Loader sizing behavior

Loader is like any other visual item and must be positioned and sized accordingly to become visible.

Loader与其他可见item一样,需要设置位置的大小才可见。

  • If an explicit size is not specified for the Loader, the Loader is automatically resized to the size of the loaded item once the component is loaded.
  • 如果没有显式的指定大小,一旦组件被加载,Loader会自动设置组件的大小。
  • If the size of the Loader is specified explicitly by setting the width, height or by anchoring, the loaded item will be resized to the size of the Loader.
  • 如果Loader的大小被显式的指定width,height或anchor,被加载的item会被调整为Loader的大小。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值