FluentUI/example/qml-Qt6/page/T_Tooltip.qml

104 lines
2.3 KiB
QML
Raw Normal View History

2023-08-24 15:50:37 +08:00
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
import QtQuick.Window
import FluentUI
2024-01-25 17:26:50 +08:00
import "../component"
2023-08-24 15:50:37 +08:00
FluScrollablePage{
2024-03-09 15:35:48 +08:00
title: qsTr("Tooltip")
2023-08-24 15:50:37 +08:00
FluText{
Layout.topMargin: 20
2024-03-09 15:35:48 +08:00
text: qsTr("Hover over Tultip and it pops up")
2023-08-24 15:50:37 +08:00
}
FluArea{
Layout.fillWidth: true
Layout.topMargin: 20
height: 68
paddings: 10
Column{
spacing: 5
anchors{
verticalCenter: parent.verticalCenter
left: parent.left
}
FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("Text properties of FluIconButton support the Tooltip pop-up window by default")
2023-08-24 15:50:37 +08:00
}
FluIconButton{
iconSource:FluentIcons.ChromeCloseContrast
iconSize: 15
2024-03-09 15:35:48 +08:00
text: qsTr("Delete")
2023-08-24 15:50:37 +08:00
onClicked:{
2024-03-09 15:35:48 +08:00
showSuccess(qsTr("Click IconButton"))
2023-08-24 15:50:37 +08:00
}
}
}
}
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
code:'FluIconButton{
iconSource:FluentIcons.ChromeCloseContrast
iconSize: 15
2024-03-09 15:35:48 +08:00
text: qsTr("Delete")
2023-08-24 15:50:37 +08:00
onClicked:{
2024-03-09 15:35:48 +08:00
showSuccess(qsTr("Click IconButton"))
2023-08-24 15:50:37 +08:00
}
}
'
}
FluArea{
Layout.fillWidth: true
Layout.topMargin: 20
height: 68
paddings: 10
Column{
spacing: 5
anchors{
verticalCenter: parent.verticalCenter
left: parent.left
}
FluText{
2024-03-09 15:35:48 +08:00
text: qsTr("Add a Tooltip pop-up to a Button")
2023-08-24 15:50:37 +08:00
}
FluButton{
id:button_1
2024-03-09 15:35:48 +08:00
text: qsTr("Delete")
2023-08-24 15:50:37 +08:00
onClicked:{
2024-03-09 15:35:48 +08:00
showSuccess(qsTr("Click Button"))
2023-08-24 15:50:37 +08:00
}
FluTooltip{
visible: button_1.hovered
text:button_1.text
delay: 1000
}
}
}
}
CodeExpander{
Layout.fillWidth: true
Layout.topMargin: -1
code:'FluButton{
2024-03-09 15:35:48 +08:00
id: button_1
text: qsTr("Delete")
2023-08-24 15:50:37 +08:00
FluTooltip{
visible: button_1.hovered
text:button_1.text
delay: 1000
}
onClicked:{
2024-03-09 15:35:48 +08:00
showSuccess(qsTr("Click Button"))
2023-08-24 15:50:37 +08:00
}
}'
}
}