2023-03-06 18:08:01 +08:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
import QtGraphicalEffects 1.15
|
|
|
|
|
import FluentUI 1.0
|
|
|
|
|
|
2023-03-10 18:08:32 +08:00
|
|
|
|
FluScrollablePage{
|
|
|
|
|
title:"Dialog"
|
2023-03-07 00:05:27 +08:00
|
|
|
|
|
|
|
|
|
FluContentDialog{
|
|
|
|
|
id:dialog
|
|
|
|
|
title:"友情提示"
|
|
|
|
|
message:"确定要退出程序么?"
|
|
|
|
|
negativeText:"取消"
|
|
|
|
|
onNegativeClicked:{
|
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
|
}
|
|
|
|
|
positiveText:"确定"
|
|
|
|
|
onPositiveClicked:{
|
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-10 18:08:32 +08:00
|
|
|
|
FluButton{
|
|
|
|
|
Layout.topMargin: 20
|
|
|
|
|
text:"Show Dialog"
|
|
|
|
|
onClicked: {
|
|
|
|
|
dialog.open()
|
2023-03-06 18:08:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|