I want to bind to the Items.IndexOf(tbXy).
In c# it's easy to access the IndexOf:
tbControl.Items.IndexOf(tbXy)
but in XAML? I tried this:
Value="{Binding Path=Items.IndexOf(tbxY)}"
I also found this suggestions with the help of converters:
Any suggestions to do this simple directly binding?