import QtQuick import QtQuick.Controls import QtQuick.Layouts ColumnLayout { property alias sysTray: sysTray anchors.fill: parent anchors.topMargin: 35 Switch { id: sysTray text: qsTr("Beim minimieren, in der Taskleiste anzeigen") checked: config.systray() } Item { Layout.fillHeight: true } }