C1AppViewItems are used to create the menu element, which appears at the left side of the C1AppView control. They are contained within a <Items> tags, as in the following markup:
To write code in Source View
<cc1:C1AppView ID="C1AppView1" runat="server" HeaderTitle="Home Page" Height="300px" WijmoControlMode="Mobile">
<Items>
<cc1:C1AppViewItem Text="List view" AppViewPageUrl="/Event/Index.aspx"></cc1:C1AppViewItem>
<cc1:C1AppViewItem Text="Calendar view" AppViewPageUrl="/Calendar/Index.aspx"></cc1:C1AppViewItem>
<cc1:C1AppViewItem Text="About" AppViewPageUrl="/Home/About.aspx"></cc1:C1AppViewItem>
<cc1:C1AppViewItem Text="Contact" AppViewPageUrl="/Home/Contact.aspx"></cc1:C1AppViewItem>
</Items>
</cc1:C1AppView>
The AppViewPageUrl property points the C1AppViewItem to the correct location. In the sample above, the AppViewPageUrl property points to local C1AppViewPages.