mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
20 lines
364 B
QML
20 lines
364 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
Dialog {
|
|
anchors.centerIn: parent
|
|
title: "Info"
|
|
font.pixelSize: 18
|
|
modal: true
|
|
standardButtons: Dialog.Ok
|
|
|
|
property alias text: message.text
|
|
|
|
Text {
|
|
id: message
|
|
width: parent.width // without width word wrap won't work
|
|
wrapMode: Text.Wrap
|
|
font.pixelSize: 18
|
|
}
|
|
}
|