For example, is it possible to bind a Textblock\'s Text property to an element Name[2] of type String?
Use ObservableCollection instead:
private ObservableCollection _myItems = new ObservableCollection(new[] { "test1", "test2", "test3" }); public ObservableCollection MyItems { get { return _myItems; } set { _myItems = value; } }
Xaml