You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
235 B
QML
13 lines
235 B
QML
|
6 years ago
|
import QtQuick 2.12
|
||
|
|
import QtQuick.Controls 2.12
|
||
|
|
import QtQuick.Layouts 1.12
|
||
|
|
import MeuiKit 1.0 as Meui
|
||
|
|
|
||
|
|
Dialog {
|
||
|
|
id: control
|
||
|
|
modal: true
|
||
|
|
|
||
|
|
x: (parent.width - control.width) / 2
|
||
|
|
y: (parent.height - control.height) / 2
|
||
|
|
}
|