Convert List to ObservableCollection in WP7

后端 未结 10 912
不知归路
不知归路 2020-12-25 10:10

I don\'t know if it\'s just too late or what, but I don\'t see how to do this...

What I\'m expecting to do, and what the object browser says is there, is this:

10条回答
  •  粉色の甜心
    2020-12-25 10:34

    ObservableCollection has several constructors which have input parameter of List or IEnumerable:
    List list = new List();
    ObservableCollection collection = new ObservableCollection(list);

提交回复
热议问题