QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
QGCGroupBox.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7GroupBox {
8 id: control
9
10 QGCPalette { id: qgcPal; colorGroupEnabled: enabled }
11
12 background: Rectangle {
13 y: control.topPadding - control.padding
14 width: parent.width
15 height: parent.height - control.topPadding + control.padding
16 color: qgcPal.windowShade
17 }
18
19 label: QGCLabel {
20 width: control.availableWidth
21 text: control.title
22 }
23}