Hello everyone,
I'm trying to bind to an item inside a collection but the index for that item needs to be "variable". Take the following pseudo syntax for example:
<TextBlock Text="{Binding Fields[{Binding Pos}]}" />
Is something like this possible? If my property Pos is 1 it should bind to the first item out of the collection "Fields" and if my Pos is 3 it should bind to the third item in the collection. I simplified my problem to this situation...
Is somethink like this doable and how? Thank you in advance. Jan