ComponentOne Accordion for ASP.NET Web Forms
C1Accordion Elements / Header Area
In This Topic
    Header Area
    In This Topic

    The C1AccordionPane's header area appears at the top of the control and initally displays "C1Accordion is Empty. Click here to add new pane." You can add content, including text, HTML content, images, and arbitrary controls such as buttons and labels, to the header area of C1Accordion. Elements in the header area of the control can be added and moved there through a simple drag-and-drop operation.

    You can add content to the header area of the C1AccordionPane at design time. Simply click the header area and begin typing.

    When you add content to the header and switch to Source view, you will notice that the header appears inside <Header> tags inside the <cc1:C1AccordionPane> tags:

    Copy Code
    <cc1:C1AccordionPane ID="C1Accordion1Pane2" runat="server">
    <Header>
    Step 2
    </Header>
    </cc1:C1AccordionPane>
    
    See Also