mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-01 08:31:33 +08:00
33 lines
606 B
QML
33 lines
606 B
QML
|
import QtQuick
|
|||
|
import QtQuick.Controls
|
|||
|
import QtQuick.Layouts
|
|||
|
import QtQuick.Window
|
|||
|
import FluentUI
|
|||
|
import "../component"
|
|||
|
|
|||
|
FluScrollablePage{
|
|||
|
|
|||
|
title:"Text"
|
|||
|
|
|||
|
FluArea{
|
|||
|
Layout.fillWidth: true
|
|||
|
Layout.topMargin: 20
|
|||
|
height: 60
|
|||
|
paddings: 10
|
|||
|
|
|||
|
FluCopyableText{
|
|||
|
text: "这是一个可以支持复制的Text"
|
|||
|
anchors.verticalCenter: parent.verticalCenter
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
CodeExpander{
|
|||
|
Layout.fillWidth: true
|
|||
|
Layout.topMargin: -1
|
|||
|
code:'FluCopyableText{
|
|||
|
text:"这是一个可以支持复制的Text"
|
|||
|
}'
|
|||
|
}
|
|||
|
|
|||
|
}
|