windows linux funktion

This commit is contained in:
2024-11-12 16:40:47 +01:00
parent d7b2243919
commit f6dd06e4df

View File

@@ -1,6 +1,7 @@
import QtQuick import QtQuick
import QtQuick.Layouts import QtQuick.Layouts
import QtQuick.Controls import QtQuick.Controls
import QtQuick.Controls.Fusion 2.3
ColumnLayout ColumnLayout
{ {
@@ -143,13 +144,15 @@ ColumnLayout
{ {
Layout.fillWidth: true Layout.fillWidth: true
Layout.preferredHeight: 100 Layout.preferredHeight: 100
TextArea TextArea
{ {
id: customerInfo id: customerInfo
background: Rectangle background: Rectangle
{ {
color: palette.base color: customerInfo.palette.base
border.color: customerInfo.activeFocus? palette.highlight: palette.base border.color: customerInfo.activeFocus? customerInfo.palette.highlight: customerInfo.palette.base
} }
} }
} }
@@ -264,8 +267,8 @@ ColumnLayout
id: contactInfo id: contactInfo
background: Rectangle background: Rectangle
{ {
color: palette.base color: contactInfo.palette.base
border.color: contactInfo.activeFocus? palette.highlight: palette.base border.color: contactInfo.activeFocus? contactInfo.palette.highlight: contactInfo.palette.base
} }
} }
} }