mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 03:30:59 +08:00
23 lines
447 B
QML
23 lines
447 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import FluentUI
|
|
|
|
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{}
|
|
}
|
|
}
|