Search code examples
c#wpfwindows-phone-8

Listbox Data Binding Windows Phone


windows phone 8 ListBox binding with list of items

listbox.Datacontext = List;

but still got nothing.


Solution

  • You should use ItemsSource property like this:

    listbox.ItemsSource = List;