我有一个绑定到gridview 控件的简单列表,在itemview 的单击事件中,我想导航到页面。
我的课看起来像;
public class GetMenu
{
public string titleName { get; set; }
public string imagePath { get; set; }
public string pagePath { get; set; }
}
带有列表的数据示例;
new GetMenu(){titleName = "Services", imagePath = "Bouquets.xaml", pagePath="Services.xaml"}
对于点击甚至有以下内容;
void ItemView_ItemClick(object sender, ItemClickEventArgs e)
{
}
我相信我需要从 e 中提取点击事件数据,我有点不确定如何做到这一点。