ComponentOne Extender Controls for ASP.NET Web Forms
Wijmo Control Toolkit Extender Controls / C1ToolTipExtender / C1ToolTipExtender Tutorial / Step 2 of 3: Customizing the Tooltip
In This Topic
    Step 2 of 3: Customizing the Tooltip
    In This Topic

    In this topic you will set some of the properties for the C1TooltipExtender control.

    1. Select View | Properties Window in the Visual Studio menu.
    2. Click the drop-down list at the top of the window and select C1TooltipExtender1.
    3. Set the C1TooltipExtender.CloseBehavior property to Sticky.
    4. Enter "Here is a tooltip!" next to the C1TooltipExtender.Content property.
    5. Set the C1TooltipExtender.Triggers event to RightClick. The markup looks like this:

    <cc1:C1TooltipExtender ID="C1TooltipExtender1" runat="server" CloseBehavior="Sticky"

            Content="Here is the tooltip!" Triggers="RightClick" TargetControlID="Label1">

        </cc1:C1TooltipExtender>

    Now run the project to view the tooltip.