mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-07-01 23:51:48 +08:00
update
This commit is contained in:
@ -1,14 +1,62 @@
|
||||
import QtQuick
|
||||
import QtQuick.Window
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
import FluentUI
|
||||
|
||||
FluWindow {
|
||||
Window {
|
||||
id:window
|
||||
width: 400
|
||||
height: 400
|
||||
title: "132"
|
||||
visible: true
|
||||
width: 600
|
||||
color: "#00000000"
|
||||
height: 480
|
||||
|
||||
FluInfoBar{
|
||||
id:info_bar
|
||||
root: window
|
||||
}
|
||||
|
||||
Rectangle{
|
||||
anchors.fill: parent
|
||||
color: "#FFFFFF"
|
||||
}
|
||||
|
||||
FluButton{
|
||||
x: 23
|
||||
y: 31
|
||||
text:"123"
|
||||
onClicked: {
|
||||
info_bar.showSuccess("asdasd")
|
||||
}
|
||||
}
|
||||
|
||||
FluFilledButton{
|
||||
x: 23
|
||||
y: 95
|
||||
text: "asdasd"
|
||||
onClicked: {
|
||||
info_bar.showInfo("123132")
|
||||
}
|
||||
}
|
||||
|
||||
FluTextBox{
|
||||
text: "asdasd"
|
||||
anchors.verticalCenterOffset: -59
|
||||
anchors.horizontalCenterOffset: -127
|
||||
anchors.centerIn: parent
|
||||
}
|
||||
|
||||
FluProgressBar{
|
||||
x: 23
|
||||
y: 238
|
||||
|
||||
}
|
||||
|
||||
FluProgressRing{
|
||||
x: 18
|
||||
y: 283
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
import FluentUI
|
||||
|
||||
FluWindow {
|
||||
Window {
|
||||
|
||||
id:window
|
||||
title:"SingleTask"
|
||||
|
Reference in New Issue
Block a user