23 lines
365 B
QML
Executable File
23 lines
365 B
QML
Executable File
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
|
|
}
|
|
}
|