You will have to use a MultiBinding with a converter for this, since Index itself needs to be binded.
E.g.
<MyControl>
<MyControl.Text>
<MultiBinding Converter="{StaticResource yourConverter}">
<MultiBinding.Bindings>
<Binding Path="List" />
<Binding Path="Index" />
</MultiBinding.Bindings>
</MultiBinding>
</MyControl.Text>
</MyControl>
And the converter:
public class NameConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
if (values.Length != 2 || !(values[0] is IList<MyItemType>) || !(values[1] is int))
return Binding.DoNothing;
var list = (IList<MyItemType>)values[0];
var index = (int)values[1];
if (index < 0 || index >= list.Count)
return Binding.DoNothing;
return list[index];
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
return Binding.DoNothing;
}
}
Multibinding solutions for Silverlight (courtesy of Google):
SL3: http://www.olsonsoft.com/blogs/stefanolson/post/Improvements-to-Silverlight-Multi-binding-support.aspx
SL4: http://www.scottlogic.co.uk/blog/colin/2010/05/silverlight-multibinding-solution-for-silverlight-4/
SL5: http://www.codeproject.com/Articles/286171/MultiBinding-in-Silverlight-5