mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-07-07 20:17:42 +08:00
update
This commit is contained in:
@ -7,7 +7,7 @@ import "../component"
|
||||
|
||||
FluScrollablePage{
|
||||
|
||||
title:"Dialog"
|
||||
title: qsTr("Dialog")
|
||||
|
||||
FluArea{
|
||||
Layout.fillWidth: true
|
||||
@ -16,7 +16,7 @@ FluScrollablePage{
|
||||
Layout.topMargin: 20
|
||||
FluButton{
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
text:"Show Double Button Dialog"
|
||||
text: qsTr("Show Double Button Dialog")
|
||||
onClicked: {
|
||||
double_btn_dialog.open()
|
||||
}
|
||||
@ -27,16 +27,16 @@ FluScrollablePage{
|
||||
Layout.topMargin: -1
|
||||
code:'FluContentDialog{
|
||||
id:dialog
|
||||
title:"友情提示"
|
||||
message:"确定要退出程序么?"
|
||||
negativeText:"取消"
|
||||
title: qsTr("Friendly Reminder")
|
||||
message: qsTr("Are you sure you want to opt out?")
|
||||
negativeText: qsTr("Cancel")
|
||||
buttonFlags: FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
||||
onNegativeClicked:{
|
||||
showSuccess("点击取消按钮")
|
||||
showSuccess(qsTr("Click the Cancel Button"))
|
||||
}
|
||||
positiveText:"确定"
|
||||
positiveText: qsTr("OK")
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
showSuccess(qsTr("Click the OK Button"))
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
@ -44,16 +44,16 @@ FluScrollablePage{
|
||||
|
||||
FluContentDialog{
|
||||
id:double_btn_dialog
|
||||
title:"友情提示"
|
||||
message:"确定要退出程序么?"
|
||||
title: qsTr("Friendly Reminder")
|
||||
message: qsTr("Are you sure you want to opt out?")
|
||||
buttonFlags: FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
||||
negativeText:"取消"
|
||||
onNegativeClicked:{
|
||||
showSuccess("点击取消按钮")
|
||||
negativeText: qsTr("Cancel")
|
||||
onNegativeClicked: {
|
||||
showSuccess(qsTr("Click the Cancel Button"))
|
||||
}
|
||||
positiveText:"确定"
|
||||
positiveText: qsTr("OK")
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
showSuccess(qsTr("Click the OK Button"))
|
||||
}
|
||||
}
|
||||
|
||||
@ -74,43 +74,43 @@ FluScrollablePage{
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: -1
|
||||
code:'FluContentDialog{
|
||||
id:dialog
|
||||
title:"友情提示"
|
||||
message:"确定要退出程序么?"
|
||||
negativeText:"取消"
|
||||
id: dialog
|
||||
title: qsTr("Friendly Reminder")
|
||||
message: qsTr("Are you sure you want to opt out?")
|
||||
negativeText: qsTr("Cancel")
|
||||
buttonFlags: FluContentDialogType.NeutralButton | FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
||||
negativeText:"取消"
|
||||
onNegativeClicked:{
|
||||
showSuccess("点击取消按钮")
|
||||
negativeText: qsTr("Cancel")
|
||||
onNegativeClicked: {
|
||||
showSuccess(qsTr("Click the Cancel Button"))
|
||||
}
|
||||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
positiveText: qsTr("OK")
|
||||
onPositiveClicked: {
|
||||
showSuccess(qsTr("Click the OK Button"))
|
||||
}
|
||||
neutralText:"最小化"
|
||||
onNeutralClicked:{
|
||||
showSuccess("点击最小化按钮")
|
||||
neutralText: qsTr("Minimize")
|
||||
onNeutralClicked: {
|
||||
showSuccess(qsTr("Click Minimize"))
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
}
|
||||
|
||||
FluContentDialog{
|
||||
id:triple_btn_dialog
|
||||
title:"友情提示"
|
||||
message:"确定要退出程序么?"
|
||||
id: triple_btn_dialog
|
||||
title: qsTr("Friendly Reminder")
|
||||
message: qsTr("Are you sure you want to opt out?")
|
||||
buttonFlags: FluContentDialogType.NeutralButton | FluContentDialogType.NegativeButton | FluContentDialogType.PositiveButton
|
||||
negativeText:"取消"
|
||||
onNegativeClicked:{
|
||||
showSuccess("点击取消按钮")
|
||||
negativeText: qsTr("Cancel")
|
||||
onNegativeClicked: {
|
||||
showSuccess(qsTr("Click the Cancel Button"))
|
||||
}
|
||||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
positiveText: qsTr("OK")
|
||||
onPositiveClicked: {
|
||||
showSuccess(qsTr("Click the OK Button"))
|
||||
}
|
||||
neutralText:"最小化"
|
||||
onNeutralClicked:{
|
||||
showSuccess("点击最小化按钮")
|
||||
neutralText: qsTr("Minimize")
|
||||
onNeutralClicked: {
|
||||
showSuccess(qsTr("Click Minimize"))
|
||||
}
|
||||
}
|
||||
|
||||
@ -122,7 +122,7 @@ FluScrollablePage{
|
||||
FluButton{
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 5
|
||||
text:"Custom Content Dialog"
|
||||
text: qsTr("Custom Content Dialog")
|
||||
onClicked: {
|
||||
custom_btn_dialog.open()
|
||||
}
|
||||
@ -130,7 +130,7 @@ FluScrollablePage{
|
||||
FluButton{
|
||||
anchors.top: parent.top
|
||||
anchors.topMargin: 48
|
||||
text:"Custom Content Dialog2"
|
||||
text: qsTr("Custom Content Dialog2")
|
||||
onClicked: {
|
||||
custom_btn_dialog2.open()
|
||||
}
|
||||
@ -140,10 +140,10 @@ FluScrollablePage{
|
||||
Layout.fillWidth: true
|
||||
Layout.topMargin: -1
|
||||
code:'FluContentDialog{
|
||||
id:dialog
|
||||
title:"友情提示"
|
||||
message:"数据正在加载中,请稍等..."
|
||||
negativeText:"取消加载"
|
||||
id: dialog
|
||||
title: qsTr("Friendly Reminder")
|
||||
message: qsTr("Data is loading, please wait...")
|
||||
negativeText: qsTr("Unload")
|
||||
contentDelegate: Component{
|
||||
Item{
|
||||
width: parent.width
|
||||
@ -153,22 +153,22 @@ FluScrollablePage{
|
||||
}
|
||||
}
|
||||
}
|
||||
onNegativeClicked:{
|
||||
showSuccess("点击取消按钮")
|
||||
onNegativeClicked: {
|
||||
showSuccess(qsTr("Click the Cancel Button"))
|
||||
}
|
||||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
positiveText :qsTr("OK")
|
||||
onPositiveClicked: {
|
||||
showSuccess(qsTr("Click the OK Button"))
|
||||
}
|
||||
}
|
||||
dialog.open()'
|
||||
}
|
||||
|
||||
FluContentDialog{
|
||||
id:custom_btn_dialog
|
||||
title:"友情提示"
|
||||
message:"数据正在加载中,请稍等..."
|
||||
negativeText:"取消加载"
|
||||
id: custom_btn_dialog
|
||||
title: qsTr("Friendly Reminder")
|
||||
message: qsTr("Data is loading, please wait...")
|
||||
negativeText: qsTr("Unload")
|
||||
contentDelegate: Component{
|
||||
Item{
|
||||
implicitWidth: parent.width
|
||||
@ -178,18 +178,18 @@ FluScrollablePage{
|
||||
}
|
||||
}
|
||||
}
|
||||
onNegativeClicked:{
|
||||
showSuccess("点击取消按钮")
|
||||
onNegativeClicked: {
|
||||
showSuccess(qsTr("Click the Cancel Button"))
|
||||
}
|
||||
positiveText:"确定"
|
||||
onPositiveClickListener:function(){
|
||||
showError("测试InfoBar层级在Popup之上")
|
||||
positiveText: qsTr("OK")
|
||||
onPositiveClickListener: function(){
|
||||
showError(qsTr("Test the InfoBar level on top of the Popup"))
|
||||
}
|
||||
}
|
||||
|
||||
FluContentDialog{
|
||||
id:custom_btn_dialog2
|
||||
title:"折线图"
|
||||
title: qsTr("Line Chart")
|
||||
contentDelegate: Component{
|
||||
Item{
|
||||
implicitWidth: parent.width
|
||||
@ -224,9 +224,9 @@ FluScrollablePage{
|
||||
}
|
||||
}
|
||||
buttonFlags: FluContentDialogType.PositiveButton
|
||||
positiveText:"确定"
|
||||
onPositiveClicked:{
|
||||
showSuccess("点击确定按钮")
|
||||
positiveText: qsTr("OK")
|
||||
onPositiveClicked: {
|
||||
showSuccess(qsTr("Click the OK Button"))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user