I am working on a Windows Store App and would like to show some additional information about an Item that was clicked in ListView or GridView. This information should be sho
All you need to do is get DataContext:
If You have list with items:
MyList.ItemSource = new List- ();
And in XAML:
And in CodeBehind to access Item while click on the button on the list:
private void AddClick(sender, args){
var senderButton= (Button) sender;
var item = (Item) sender.DataContext; //Item form the list
}
var item is whar you are looking for