mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 00:27:32 +08:00
60 lines
1.2 KiB
QML
60 lines
1.2 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtQuick.Window
|
|
import FluentUI
|
|
|
|
FluScrollablePage{
|
|
|
|
title:"ColorPicker"
|
|
leftPadding:10
|
|
rightPadding:10
|
|
bottomPadding:20
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
height: 280
|
|
Layout.topMargin: 20
|
|
paddings: 10
|
|
ColumnLayout{
|
|
anchors{
|
|
verticalCenter: parent.verticalCenter
|
|
left:parent.left
|
|
}
|
|
FluText{
|
|
text:"此颜色组件是Github上的开源项目"
|
|
}
|
|
FluTextButton{
|
|
leftPadding: 0
|
|
rightPadding: 0
|
|
text:"https://github.com/rshest/qml-colorpicker"
|
|
onClicked: {
|
|
Qt.openUrlExternally(text)
|
|
}
|
|
}
|
|
FluColorView{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
FluArea{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 20
|
|
height: 60
|
|
paddings: 10
|
|
|
|
RowLayout{
|
|
FluText{
|
|
text:"点击选择颜色->"
|
|
Layout.alignment: Qt.AlignVCenter
|
|
}
|
|
FluColorPicker{
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|