This is my xaml code:
<TextBlock Text="{Binding MyTranslations[0].Name}"></TextBlock>
What I want to do is remove the 0. Instead of 0, I need to get the correct integer from a static field in a static class which is in another project but in the samo solution.
I guess it should look like something like this:
<TextBlock Text="{Binding MyTranslations[MyStaticClass.MyStaticInt].Name}"></TextBlock>
How do I do this?