22 lines
283 B
QML
22 lines
283 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
ColumnLayout
|
|
{
|
|
id: addObjectLayout
|
|
visible: false
|
|
|
|
ObjectAddOnEmployee
|
|
{
|
|
id: oaoemployee
|
|
}
|
|
ObjectAddOnContactPerson
|
|
{
|
|
id: oaocontactperson
|
|
}
|
|
Item
|
|
{
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|