<ComboBox DataContext="{StaticResource MyViewModel}" DisplayMemberPath="Geometry" ItemsSource="{Binding CollectionOfGraphics}" /><ComboBox DataContext="{StaticResource MyViewModel}" DisplayMemberPath="Attributes["OBJECTID"]" ItemsSource="{Binding CollectionOfGraphics}" /><ComboBox DataContext="{StaticResource MyViewModel}" DisplayMemberPath="Attributes[0]" ItemsSource="{Binding CollectionOfGraphics}" />
Solved! Go to Solution.
<ComboBox DataContext="{StaticResource MyViewModel}"
ItemsSource="{Binding CollectionOfGraphics}" >
<ComboBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding Attributes[OBJECTID]}"/>
</DataTemplate>
</ComboBox.ItemTemplate>
</ComboBox>