mirror of
https://github.com/QuasarApp/SimpleQmlNotify.git
synced 2025-04-27 06:04:33 +00:00
18 lines
350 B
QML
18 lines
350 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
|
|
|
|
footer: DialogButtonBox {
|
|
standardButtons: Dialog.Yes | Dialog.No;
|
|
}
|
|
}
|