Articles in this section
Category / Section

How to show tooltip for the disabled ribbon items in WPF Ribbon control?

1 min read

You can show the ToolTip for the disabled ribbon items by enabling the ShowOnDisabled attached property of ToolTipService in WPF Ribbon control.

XAML

<Syncfusion:Ribbon  Name="ribbon"   VerticalAlignment="Top">
      <Syncfusion:RibbonTab Name="tab" Caption="Home">
            <Syncfusion:RibbonBar Header="Clipboard">
                  <Syncfusion:SplitButton IsEnabled="False" Name="paste" ToolTipService.ShowOnDisabled="True"   Label="Paste" SizeForm="Large"  LargeIcon="/Resources/Paste32.png">
                        <Syncfusion:SplitButton.ToolTip>
                              <Syncfusion:ScreenTip Description="Paste (Ctrl+V)">
                                    <TextBlock Width="130"
                                               HorizontalAlignment="Left"
                                               Foreground="#FF4C4C4C"
                                               Text="Paste the contents of clipboard."
                                               TextWrapping="Wrap" />
                              </Syncfusion:ScreenTip>
                        </Syncfusion:SplitButton.ToolTip>
                  </Syncfusion:SplitButton>
            </Syncfusion:RibbonBar>
      </Syncfusion:RibbonTab>
</Syncfusion:Ribbon>

C#

ToolTipService.SetShowOnDisabled(paste, true);

The following screenshot displays how to set ToolTip for the disabled control.

Show ToolTip for disabled control in WPF Ribbon

 


Conclusion

I hope you enjoyed learning about how to show tooltip for the disabled ribbon items in WPF Ribbon control.

You can refer to our  WPF Ribbon feature tour page to know about its other groundbreaking feature representations. You can also explore our WPF Ribbon documentation to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied