It is very simple:
Add the CurrentPerson property to your ViewModel and bind it to the SelectedItem ListBox property.
Something like that:
View Model:
public Person CurrentPerson { get { return _currentPerson; } set { if(value == _currentPerson) return; _currentPerson = value; NotifyOfPropertyChange("CurrentPerson"); } }
View:
<ListBox SelectedItem="{Binding CurrentPerson}" ...>
source share