FluentUI/Gallery/res/qml/page/T_ToolTip.qml
yxdy a44db97aa3
Some checks failed
Gallery App Build / Windows (push) Has been cancelled
Gallery App Build / macOS (push) Has been cancelled
Gallery App Build / Ubuntu (push) Has been cancelled
init
2025-02-12 10:31:20 +08:00

35 lines
638 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import FluentUI.Controls
import Gallery
ScrollablePage {
title: qsTr("ToolTip")
CardHighlight{
Layout.fillWidth: true
codeSnippet: `import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import FluentUI.Controls
ColumnLayout{
spacing: 20
Button {
text: "Tip Preesed"
ToolTip.visible: pressed
ToolTip.text: qsTr("This is a tool tip.")
}
IconButton {
text: "Tip Hovered"
ToolTip.visible: hovered
ToolTip.delay: 500
ToolTip.text: qsTr("This is a tool tip.")
}
}
`}
}