How does ObservableCollection in .NET Projection match WinRT?

Looking at the Windows Runtime link on Microsoft's site, the only relevant collection I can find is IObservableVector . Does the .NET ObservableCollection create a mapping to this WinRT interface? If so, hows does it deal with the fact that ObservableCollection implements several other interfaces that IObservableVector does not support?

UPDATE : ObservableCollection works with Windows 8 Consumer Preview and can bind to ItemsSource and will update XAML control correctly when items are added / removed from ObservableCollection.

+3


source to share


1 answer


Upon querying on the Microsoft Windows Runtime Forum, it seems that there is currently no mapping to the environment type IObservableVector from any CLR type.



+2


source







All Articles