Hi, it's actually similar with the index. If you have set the data-binding for the ListView, the clicked item should be your Book model. So you can get the selected Book instance and check its Name property. eg:
private void ListView_ItemClick(object sender, ItemClickEventArgs e)
{
// You can make a global field for the below resourceLoader
var resourceLoader = ...
Book item = (Book)e.ClickedItem;
if (item.Name == resourceLoader.GetString("ItemA"))
{
//do something
}
}
Please let me know if it doesn't work.