27 lines
450 B
QML
27 lines
450 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
Frame
|
|
{
|
|
Layout.alignment: Qt.AlignTop
|
|
Layout.fillWidth: true
|
|
ColumnLayout
|
|
{
|
|
id: addObjectLayout
|
|
width: parent.width
|
|
ObjectAddOnEmployee
|
|
{
|
|
id: oaoemployee
|
|
}
|
|
ObjectAddOnContactPerson
|
|
{
|
|
id: oaocontactperson
|
|
}
|
|
Item
|
|
{
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|