A C1ListViewNestedItem allows you to nest other C1ListViewItems within your main list. The C1ListViewNestedItem resembles the following image:
The markup used to create a C1ListViewNestedItem should be similar to the following:
<cc1:C1ListViewNestedItem Text="More Options">
<Items>
<cc1:C1ListViewButtonItem Text="Right here!"></cc1:C1ListViewButtonItem>
<cc1:C1ListViewDividerItem></cc1:C1ListViewDividerItem>
<cc1:C1ListViewItem Text="This is another item"></cc1:C1ListViewItem>
</Items>
</cc1:C1ListViewNestedItem>