GUI Object

This commit is contained in:
2025-01-13 15:28:22 +01:00
parent 7f26e4d898
commit edaad51ea7
11 changed files with 1109 additions and 0 deletions

21
Gui/ObjectAddOns.qml Normal file
View File

@@ -0,0 +1,21 @@
import QtQuick
import QtQuick.Layouts
ColumnLayout
{
id: addObjectLayout
visible: false
ObjectAddOnEmployee
{
id: oaoemployee
}
ObjectAddOnContactPerson
{
id: oaocontactperson
}
Item
{
Layout.fillHeight: true
}
}