QGroundControl
Ground Control Station for MAVLink Drones
Loading...
Searching...
No Matches
MvPanelPage.qml
Go to the documentation of this file.
1import QtQuick
2import QtQuick.Controls
3
4import QGroundControl
5import QGroundControl.Controls
6
7Rectangle {
8 property bool showBorder: true
9 property real contentMargin: ScreenTools.defaultFontPixelHeight
10 default property alias contentChildren: contentContainer.data
11
12 color: qgcPal.windowTransparent
13 border.color: QGroundControl.globalPalette.groupBorder
14 border.width: showBorder ? 1 : 0
15 radius: ScreenTools.defaultFontPixelHeight / 3
16
17 Item {
18 id: contentContainer
19 anchors.fill: parent
20 anchors.margins: contentMargin / 2
21 anchors.bottomMargin: contentMargin * 2
22 }
23}