ComponentOne Extender Controls for ASP.NET Web Forms
Wijmo Control Toolkit Extender Controls / C1SuperPanel Extender / C1SuperPanelExtender Tutorial / Step 3 of 4: Customizing the C1SuperPanelExtender
In This Topic
    Step 3 of 4: Customizing the C1SuperPanelExtender
    In This Topic

    In this topic you will set some of the properties for the C1SuperPanelExtender to change the way the panel is scrolled.

    1. Select View | Properties Window in the Visual Studio menu.
    2. Click the drop-down list at the top of the window and select C1SuperPanelExtender1.
    3. Expand the C1SuperPanelExtender.HScroller property node and set ScrollMode to Edge.
    4. Expand the C1SuperPanelExtender.VScroller property node and set the ScrollMode property to Buttons.

    <cc1:C1SuperPanelExtender ID="C1SuperPanelExtender1" runat="server" TargetControlID="Panel1">

    <AnimationOptions Easing=""></AnimationOptions>

            <HScroller ScrollMode="Edge">

            </HScroller>

            <VScroller ScrollMode="Buttons">

            </VScroller>

    <ResizableOptions Handles="All" Helper="ui-widget-content wijmo-wijsuperpanel-helper"></ResizableOptions>

        </cc1:C1SuperPanelExtender>

    Next, run the project to scroll the panel.