tags:

views:

41

answers:

1

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

+1  A: 

yep.. works like a charm

<TextBlock FontStyle="Italic"  Text="{Binding Path=ExchangesDictionary[AMEX].Name}" />
Sonic Soul