ComponentOne Wizard for ASP.NET WebForms
Appearance and Behavior / ToolTips
In This Topic
    ToolTips
    In This Topic

    You can use the C1WizardStep.ToolTip property to create a user-friendly interface. ToolTips are graphic user interface elements that are used to provide users with information or instructions regarding elements of a user interface. When users hover over the page with their cursor, a box will appear with the additional information.

    ToolTips can be applied to each page of a C1Wizard by setting the C1WizardStep.ToolTip property to a string. If you wanted to set a ToolTip for the first tab of the control, you would use the following code:

    To write code in Visual Basic

    Visual Basic
    Copy Code
    C1WizardStep.ToolTip = "Hello World!"
    

    To write code in C#

    C#
    Copy Code
    C1WizardStep.ToolTip = "Hello World!";
    

    You can also set the C1WizardStep.ToolTip property in Design view or in Source view.

    See Also