mirror of
https://github.com/QuasarApp/SimpleQmlNotify.git
synced 2025-04-27 22:24:33 +00:00
19 lines
366 B
QML
19 lines
366 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Controls.Material 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
NotificationForm {
|
|
id: questionDialog
|
|
|
|
readonly property string defImg: "qrc:/icons/question"
|
|
|
|
autoClose: false
|
|
clickClose: false
|
|
modal: true
|
|
|
|
footer: DialogButtonBox {
|
|
standardButtons: Dialog.Yes | Dialog.No;
|
|
}
|
|
}
|