mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
16 lines
243 B
QML
16 lines
243 B
QML
import QtQuick
|
|
import QtQuick.Dialogs
|
|
|
|
Dialog {
|
|
anchors.centerIn: parent
|
|
title: qsTr("Info")
|
|
standardButtons: Dialog.Ok
|
|
|
|
property alias text: message.text
|
|
|
|
Text {
|
|
id: message
|
|
width: parent.width
|
|
wrapMode: Text.Wrap
|
|
}
|
|
}
|