Convert List to ObservableCollection in WP7

后端 未结 10 849
不知归路
不知归路 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:32

    Use this:

    List myList;
    ObservableCollection myOC = new ObservableCollection(myList);
    

提交回复
热议问题