What is the syntax to set the 'current' member of an observable collection? I assume that there is such a thing since a ListBox/ComboBox/etc will set this.
For example, let's assume that we have
public ObservableCollection<IPage> Pages = new ObservableCollection<IPage>();
and that this collection is populated with objects derived from IPage.
Further assume that at some point we want to programmatically set one of these member as the current one using an integer index. Is this possible and, if so, how?
Richard Lewis Haggard