2023-08-24 15:50:37 +08:00
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
import FluentUI 1.0
|
2023-08-26 17:20:30 +08:00
|
|
|
import "../component"
|
2023-03-06 18:08:01 +08:00
|
|
|
|
2023-03-10 18:08:32 +08:00
|
|
|
FluScrollablePage{
|
2023-03-28 17:53:46 +08:00
|
|
|
|
2023-03-10 18:08:32 +08:00
|
|
|
title:"Dialog"
|
2023-04-06 17:32:21 +08:00
|
|
|
|
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 68
|
|
|
|
paddings: 10
|
|
|
|
Layout.topMargin: 20
|
2023-04-20 18:10:45 +08:00
|
|
|
FluButton{
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
text:"Show Double Button Dialog"
|
|
|
|
onClicked: {
|
|
|
|
double_btn_dialog.open()
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
2023-04-20 18:10:45 +08:00
|
|
|
}
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
2023-04-19 17:25:46 +08:00
|
|
|
Layout.topMargin: -1
|
2023-04-06 17:32:21 +08:00
|
|
|
code:'FluContentDialog{
|
|
|
|
id:dialog
|
|
|
|
title:"友情提示"
|
|
|
|
message:"确定要退出程序么?"
|
|
|
|
negativeText:"取消"
|
2023-07-18 18:24:06 +08:00
|
|
|
buttonFlags: FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
2023-04-06 17:32:21 +08:00
|
|
|
onNegativeClicked:{
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
}
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
2023-04-20 18:10:45 +08:00
|
|
|
}
|
|
|
|
dialog.open()'
|
2023-04-06 17:32:21 +08:00
|
|
|
}
|
2023-03-07 00:05:27 +08:00
|
|
|
|
|
|
|
FluContentDialog{
|
2023-04-20 18:10:45 +08:00
|
|
|
id:double_btn_dialog
|
2023-03-07 00:05:27 +08:00
|
|
|
title:"友情提示"
|
|
|
|
message:"确定要退出程序么?"
|
2023-07-18 18:24:06 +08:00
|
|
|
buttonFlags: FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
2023-03-07 00:05:27 +08:00
|
|
|
negativeText:"取消"
|
|
|
|
onNegativeClicked:{
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
}
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-20 18:10:45 +08:00
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
height: 68
|
|
|
|
paddings: 10
|
|
|
|
Layout.topMargin: 20
|
|
|
|
FluButton{
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
text:"Show Triple Button Dialog"
|
|
|
|
onClicked: {
|
|
|
|
triple_btn_dialog.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: -1
|
|
|
|
code:'FluContentDialog{
|
|
|
|
id:dialog
|
|
|
|
title:"友情提示"
|
|
|
|
message:"确定要退出程序么?"
|
|
|
|
negativeText:"取消"
|
2023-07-18 18:24:06 +08:00
|
|
|
buttonFlags: FluContentDialogType.NeutralButton | FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
2023-04-20 20:22:56 +08:00
|
|
|
negativeText:"取消"
|
|
|
|
onNegativeClicked:{
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
}
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
|
|
|
neutralText:"最小化"
|
|
|
|
onNeutralClicked:{
|
|
|
|
showSuccess("点击最小化按钮")
|
2023-04-20 18:10:45 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
dialog.open()'
|
|
|
|
}
|
2023-04-06 17:32:21 +08:00
|
|
|
|
2023-04-20 18:10:45 +08:00
|
|
|
FluContentDialog{
|
|
|
|
id:triple_btn_dialog
|
|
|
|
title:"友情提示"
|
|
|
|
message:"确定要退出程序么?"
|
2023-07-18 18:24:06 +08:00
|
|
|
buttonFlags: FluContentDialogType.NeutralButton | FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
2023-04-20 18:10:45 +08:00
|
|
|
negativeText:"取消"
|
|
|
|
onNegativeClicked:{
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
}
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
|
|
|
neutralText:"最小化"
|
|
|
|
onNeutralClicked:{
|
|
|
|
showSuccess("点击最小化按钮")
|
|
|
|
}
|
|
|
|
}
|
2023-12-04 17:35:05 +08:00
|
|
|
|
|
|
|
FluArea{
|
|
|
|
Layout.fillWidth: true
|
2024-01-31 11:13:37 +08:00
|
|
|
height: 100
|
2023-12-04 17:35:05 +08:00
|
|
|
paddings: 10
|
|
|
|
Layout.topMargin: 20
|
|
|
|
FluButton{
|
2024-01-31 11:13:37 +08:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 5
|
2023-12-04 17:35:05 +08:00
|
|
|
text:"Custom Content Dialog"
|
|
|
|
onClicked: {
|
|
|
|
custom_btn_dialog.open()
|
|
|
|
}
|
|
|
|
}
|
2024-01-31 11:13:37 +08:00
|
|
|
FluButton{
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.topMargin: 48
|
|
|
|
text:"Custom Content Dialog2"
|
|
|
|
onClicked: {
|
|
|
|
custom_btn_dialog2.open()
|
|
|
|
}
|
|
|
|
}
|
2023-12-04 17:35:05 +08:00
|
|
|
}
|
|
|
|
CodeExpander{
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.topMargin: -1
|
|
|
|
code:'FluContentDialog{
|
|
|
|
id:dialog
|
|
|
|
title:"友情提示"
|
|
|
|
message:"数据正在加载中,请稍等..."
|
|
|
|
negativeText:"取消加载"
|
|
|
|
contentDelegate: Component{
|
|
|
|
Item{
|
|
|
|
width: parent.width
|
|
|
|
height: 80
|
|
|
|
FluProgressRing{
|
|
|
|
anchors.centerIn: parent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onNegativeClicked:{
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
}
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
|
|
|
dialog.open()'
|
|
|
|
}
|
|
|
|
|
|
|
|
FluContentDialog{
|
|
|
|
id:custom_btn_dialog
|
|
|
|
title:"友情提示"
|
|
|
|
message:"数据正在加载中,请稍等..."
|
|
|
|
negativeText:"取消加载"
|
|
|
|
contentDelegate: Component{
|
|
|
|
Item{
|
2024-01-31 11:13:37 +08:00
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: 80
|
2023-12-04 17:35:05 +08:00
|
|
|
FluProgressRing{
|
|
|
|
anchors.centerIn: parent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
onNegativeClicked:{
|
|
|
|
showSuccess("点击取消按钮")
|
|
|
|
}
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
|
|
|
}
|
2024-01-31 11:13:37 +08:00
|
|
|
|
|
|
|
FluContentDialog{
|
|
|
|
id:custom_btn_dialog2
|
|
|
|
title:"折线图"
|
|
|
|
contentDelegate: Component{
|
|
|
|
Item{
|
|
|
|
implicitWidth: parent.width
|
|
|
|
implicitHeight: 300
|
|
|
|
FluChart{
|
|
|
|
anchors.fill: parent
|
|
|
|
chartType: 'line'
|
|
|
|
chartData: { return {
|
|
|
|
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
|
|
|
|
datasets: [{
|
|
|
|
label: 'My First Dataset',
|
|
|
|
data: [65, 59, 80, 81, 56, 55, 40],
|
|
|
|
fill: false,
|
|
|
|
borderColor: 'rgb(75, 192, 192)',
|
|
|
|
tension: 0.1
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chartOptions: { return {
|
|
|
|
maintainAspectRatio: false,
|
|
|
|
title: {
|
|
|
|
display: true,
|
|
|
|
text: 'Chart.js Line Chart - Stacked'
|
|
|
|
},
|
|
|
|
tooltips: {
|
|
|
|
mode: 'index',
|
|
|
|
intersect: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
buttonFlags: FluContentDialogType.PositiveButton
|
|
|
|
positiveText:"确定"
|
|
|
|
onPositiveClicked:{
|
|
|
|
showSuccess("点击确定按钮")
|
|
|
|
}
|
|
|
|
}
|
2023-03-06 18:08:01 +08:00
|
|
|
}
|