Hello guys, I have a page divided in two sections:
Since Im using MVVM, in the listview xaml I just have a binding for the ItemsSource property
After i populate the ItemSource with a list in MVVM, I create the pins, assigning pin.Tag = listElement.Id so I can keep the reference with an id between listview elements and Pins.
Now there is the problem, when i click a Pin, in the eventHandler, Im trying to select and highlight the listview corresponding element (using the id of the marker to find the right element). How can i do this? Im trying with selectedItem property but with no results..
Thanks a lot!
Answers
Solved, I just missed the Mode=TwoWay in XAML
Congratulations, your efficiency is very high.