StatusBar QML Type▲
-
Import Statement: import QtQuick.Controls 1.4
-
Since: Qt 5.1
-
Inherits: FocusScope
-
Group: StatusBar is part of Application Window, Buttons and Controls
Detailed Description▲
The common way of using StatusBar is in relation to ApplicationWindow.
Note that the StatusBar does not provide a layout of its own, but requires you to position its contents, for instance by creating a RowLayout.
If only a single item is used within the StatusBar, it will resize to fit the implicitHeight of its contained item. This makes it particularly suitable for use together with layouts. Otherwise the height is platform dependent.
import
QtQuick.Controls 1.2
import
QtQuick.Layouts 1.0
ApplicationWindow {
statusBar
:
StatusBar {
RowLayout {
anchors.fill: parent
Label {
text: "Read Only"
}
}
}
}