C#C
C#3y ago
r2d25551

❔ Bind derived class and base class to CollectionView and Picker

I am trying to bind a derived class to a Picker, and the base class to a CollectionView. Should this work? My picker is always empty:
<CollectionView ItemsSource="{Binding MyData}"
<Picker Grid.Row="1" Title="Language" ItemsSource="{Binding Languages}" ItemDisplayBinding="{Binding Name}" . . . />

The base class bindings are fine. . . but my picker is having trouble.
Was this page helpful?