mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-23 03:10:10 +08:00
feat:The FluNavigationView component adds a Tooltip prompt to make the interaction more friendly.
This commit is contained in:
parent
35921ed900
commit
cc4abbf79f
@ -176,6 +176,11 @@ Item {
|
||||
leftMargin: 6
|
||||
rightMargin: 6
|
||||
}
|
||||
FluTooltip {
|
||||
text: model.title
|
||||
visible: item_control.hovered && model.title && d.isCompact
|
||||
delay: 400
|
||||
}
|
||||
MouseArea{
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.RightButton
|
||||
@ -455,6 +460,11 @@ Item {
|
||||
leftMargin: 6
|
||||
rightMargin: 6
|
||||
}
|
||||
FluTooltip {
|
||||
text: model.title
|
||||
visible: item_control.hovered && model.title && d.isCompact
|
||||
delay: 400
|
||||
}
|
||||
onClicked:{
|
||||
if(type === 0){
|
||||
if(model.onTapListener){
|
||||
|
@ -177,6 +177,11 @@ Item {
|
||||
leftMargin: 6
|
||||
rightMargin: 6
|
||||
}
|
||||
FluTooltip {
|
||||
text: model.title
|
||||
visible: item_control.hovered && model.title && d.isCompact
|
||||
delay: 400
|
||||
}
|
||||
MouseArea{
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.RightButton
|
||||
@ -458,6 +463,11 @@ Item {
|
||||
leftMargin: 6
|
||||
rightMargin: 6
|
||||
}
|
||||
FluTooltip {
|
||||
text: model.title
|
||||
visible: item_control.hovered && model.title && d.isCompact
|
||||
delay: 400
|
||||
}
|
||||
onClicked:{
|
||||
if(type === 0){
|
||||
if(model.onTapListener){
|
||||
|
Loading…
Reference in New Issue
Block a user