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
Use attached Flyout:
... ...
And the code:
private void ListRightTapped( object sender, RightTappedRoutedEventArgs e ) { FlyoutBase.ShowAttachedFlyout( sender as FrameworkElement ); }