mirror of
https://gitlab.com/eql/lqml.git
synced 2026-02-19 06:31:38 -08:00
15 lines
225 B
QML
15 lines
225 B
QML
import QtQuick 2.15
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
Dialog {
|
|
title: qsTr("Info")
|
|
standardButtons: Dialog.Ok
|
|
|
|
property alias text: message.text
|
|
|
|
Text {
|
|
id: message
|
|
width: parent.width
|
|
wrapMode: Text.Wrap
|
|
}
|
|
}
|