mirror of
https://github.com/QuasarApp/SimpleQmlNotify.git
synced 2025-04-28 06:34:34 +00:00
16 lines
290 B
QML
16 lines
290 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
|
|
|
|
autoClose: false
|
|
clickClose: false
|
|
|
|
footer: DialogButtonBox {
|
|
standardButtons: Dialog.Yes | Dialog.No;
|
|
}
|
|
}
|