[]
You can disable all ToolTips by setting the ShowToolTips property to False.
Complete the following steps:
Complete the following steps:
Double-click in the empty part of the form to open Code view. Notice that a Form_Load event handler has been added to Code view.
To set the ShowToolTips property to False, add the following code to the Form_Load event:
To write code in Visual Basic
C1TopicBar1.ShowToolTips = False
To write code in C#
c1TopicBar1.ShowToolTips = false;
Press F5 to build the project.