ListBox
1 <ListBox ItemsSource="{Binding}" IsSynchronizedWithCurrentItem="True"> 2 <ListBox.ItemTemplate> 3 <DataTemplate> 4 <TextBlock> 5 <TextBlock Text="{Binding Path=Name}"/>: 6 <TextBlock Text="{Binding Path=Nick}"/> 7 </TextBlock> 8 </DataTemplate> 9 </ListBox.ItemTemplate> 10 </ListBox>