You need to click on the ListView item ListView get the item itself. You need to use only ItemClick , not SelectedItem and so on. After clicking on the list item, the OnClick method is OnClick
private void OnClick(object sender, RoutedEventArgs e){} In "e" I found the value I need 
Garter events
protected override void OnAttached() { this.AssociatedObject.ItemClick += OnClick; this.AssociatedObject.IsItemClickEnabled = true; } The question is to get it, how can it be done?
