mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-28 22:26:43 +08:00
2a639022ec
涉及控件如下:FluCheckBox、FluCopyableText、FluIcon、FluIconButton、FluRadioButton、FluText、FluToggleSwitch
41 lines
895 B
QML
41 lines
895 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Window 2.15
|
|
import FluentUI 1.0
|
|
import "../component"
|
|
|
|
FluScrollablePage{
|
|
|
|
title: qsTr("Text")
|
|
|
|
FluFrame{
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: 60
|
|
padding: 10
|
|
|
|
FluCopyableText{
|
|
enabled: !toggle_switch.checked
|
|
text: qsTr("This is a text that can be copied")
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
}
|
|
|
|
FluToggleSwitch{
|
|
id: toggle_switch
|
|
anchors{
|
|
right: parent.right
|
|
verticalCenter: parent.verticalCenter
|
|
}
|
|
text: qsTr("Disabled")
|
|
}
|
|
}
|
|
CodeExpander{
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: -6
|
|
code:'FluCopyableText{
|
|
text: qsTr("This is a text that can be copied")
|
|
}'
|
|
}
|
|
|
|
}
|