Hi
I want implement a new layer to my split template app.
1. MainMenu1
1.1 Menü1
1.1.1 Item1
1.1.1 Item2
2. MainMenu2
1.2 Menü2
.....
Currently I have implemented a new page and navigation works with 3 layers. In SampleDataSource.cs I added a new class for "MainMenu".
But if I choose "MainMenu" I always get all "Menü" group items displayed.
I think the problem is in the ItemViewEvent
void ItemView_ItemClick(object sender, ItemClickEventArgs e)
{
// Navigate to the appropriate destination page, configuring the new page
// by passing required information as a navigation parameter
var groupId = ((MainDataGroup)e.ClickedItem).UniqueId;
this.Frame.Navigate(typeof(ItemsPage), groupId);
}
But I don't know how can I map my "MainMenu" to an "Menu" item?
Regards