Convert a List into an ObservableCollection

前端 未结 3 1011
终归单人心
终归单人心 2021-01-31 00:40

I have a List which is being populated from JSON. I need to convert it into an ObservableCollection to bind it to my GridView

3条回答
  •  花落未央
    2021-01-31 01:34

    ObervableCollection have constructor in which you can pass your list. Quoting MSDN:

     public ObservableCollection(
          List list
     )
    

提交回复
热议问题