I have a Window that displays a variable number of identical UserControls which contain (among other things) a TextBox. A single ViewModel serves both the window and the UserControls. How do I bind the UserControl's TextBox's Text property to an element of a List-of-strings in my view model when the required index is passed to the constructor of the UserControl?
I also need Mode="TwoWay" and UpdateSourceTrigger="PropertyChanged".
Using VS2013, .NET 4.5.2, and MVVM-Light framework.
Thank you.