Please correct my question if it's not clear. What I'm looking for is..
Here's a sample binding for a dictionary... it works:
<TextBlock Text="{Binding Path=MyDictionary[ThisIsKeyInMyDict]}" />
I'm looking for:
<TextBlock x:Name="Id" Text="{Binding Path=MyDictionary[x:Name]}" />
You see? I want to look in dictionary for a key, the same as "Name" of this control.
Thanks for help!
You can use a MultiBinding for it: