ApplicationWindow
Provides a top-level application window. More...
Inherits Window
This type was introduced in QtQuick.Controls 1.0.
Properties
Detailed Description
ApplicationWindow is a Window that adds convenience for positioning items, such as MenuBar, ToolBar, and StatusBar in a platform independent manner.
ApplicationWindow {
id: window
menuBar: MenuBar {
Menu { MenuItem {...} }
Menu { MenuItem {...} }
}
toolBar: ToolBar {
RowLayout {
anchors.fill: parent
ToolButton {...}
}
}
TabView {
id: myContent
anchors.fill: parent
...
}
}
Property Documentation
statusBar : Item |
toolBar : Item |