mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
24 lines
492 B
QML
24 lines
492 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtGraphicalEffects 1.15
|
|
import FluentUI 1.0
|
|
|
|
ToolTip {
|
|
id:tool_tip
|
|
|
|
contentItem: FluText {
|
|
text: tool_tip.text
|
|
font: tool_tip.font
|
|
fontStyle: FluText.Body
|
|
padding: 4
|
|
wrapMode: Text.WrapAnywhere
|
|
}
|
|
|
|
background: Rectangle{
|
|
anchors.fill: parent
|
|
color: FluTheme.dark ? Qt.rgba(50/255,49/255,48/255,1) : Qt.rgba(1,1,1,1)
|
|
radius: 5
|
|
FluShadow{}
|
|
}
|
|
}
|