mirror of
https://github.com/QuasarApp/SimpleQmlNotify.git
synced 2025-04-26 13:44:34 +00:00
17 lines
312 B
QML
17 lines
312 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 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;
|
|
}
|
|
}
|