ok.. so i noticed (by trial and error) that i can bind to a collection item using index:
<TextBlock FontStyle="Italic" Text="{Binding Path=Exchanges[0].Name}" />
but what about using a dictionary key? Path=Exchanges['AMEX'].Name
ok.. so i noticed (by trial and error) that i can bind to a collection item using index:
<TextBlock FontStyle="Italic" Text="{Binding Path=Exchanges[0].Name}" />
but what about using a dictionary key? Path=Exchanges['AMEX'].Name
yep.. works like a charm
<TextBlock FontStyle="Italic" Text="{Binding Path=ExchangesDictionary[AMEX].Name}" />