Page QML Type

A page control. More...

Import Statement: import Qt.labs.controls 1.0
Inherits:

Control

Properties

Detailed Description

Page is a container control which makes it convenient to add a header and footer item to a page.

The following example snippet illustrates how to use a page-specific toolbar header and an application-wide tabbar footer.

import Qt.labs.controls 1.0

ApplicationWindow {
    visible: true

    StackView {
        anchors.fill: parent

        initialItem: Page {
            header: ToolBar {
                // ...
            }
        }
    }

    footer: TabBar {
        // ...
    }
}

See also ApplicationWindow and Container Controls.

Property Documentation

contentChildren : list<Item>

This property holds the list of content children.

See also Item::children.


[default] contentData : list<Object>

This property holds the list of content data.

See also Item::data.


This property holds the page footer item. The footer item is positioned to the bottom, and resized to the width of the page. The default value is null.

See also header and ApplicationWindow::footer.


header : Item

This property holds the page header item. The header item is positioned to the top, and resized to the width of the page. The default value is null.

See also footer and ApplicationWindow::header.


© 2017 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.