In this step, you will add different types of C1ListViewItems to your existing C1ListView control.
<cc1:C1ListView>
tag to reveal the control's smart tag .<cc1:C1ListView> </cc1:C1ListView>
tags.<Items> </Items>
<Items>
tags, add the following markup:<cc1:C1ListViewItem Text="Item 1" DataIcon="alert"></cc1:C1ListViewItem>
This will add a general C1ListViewItem to your application.
<cc1:C1ListViewNestedItem Text="More Options" DataIcon="arrow-l">
<Items>
<cc1:C1ListViewButtonItem Text="Right here!"></cc1:C1ListViewButtonItem>
<cc1:C1ListViewDividerItem></cc1:C1ListViewDividerItem>
<cc1:C1ListViewItem Text="This is another item"></cc1:C1ListViewItem>
</Items>
</cc1:C1ListViewNestedItem>
<cc1:C1ListViewButtonItem Text="Click Me!"></cc1:C1ListViewButtonItem>
<cc1:C1ListViewDividerItem Text="Divider"></cc1:C1ListViewDividerItem>
<cc1:C1ListViewLinkItem Text="Follow the link" NavigateUrl="http://www.componentone.com/"></cc1:C1ListViewLinkItem>
<cc1:C1ListViewInputItem Type="textarea" LabelText="Type your text here:"></cc1:C1ListViewInputItem>
What you've accomplished:
In this step, you have added several different types of C1ListViewItem to your C1ListView control. In the next step, you will run your application and observe the run-time behavior of the C1ListView control.