windows phone 8 ListBox binding with list of items
ListBox
listbox.Datacontext = List;
but still got nothing.
You should use ItemsSource property like this:
listbox.ItemsSource = List;