Posts

Showing posts with the label WPF MVVM JSON Operations (Part - I : Read Json File Data to List and Show on Xmal using DataGrid )

WPF MVVM JSON Operations (Part - I : Read Json File Data to List and Show on Xmal using DataGrid )

Image
  WPF MVVM JSON Operations : (Part - I : Read Json File Data to List and Show on Xmal using DataGrid ) See the folder structure and Code as per the Folders and Design Pattern **Folder-SourceDataFile   =>  PeopleData.json  [     {        "firstName": "Joe",        "lastName": "Jackson",        "gender": "male",        "age": 28,        "number": "7349282382"     },     {        "firstName": "James",        "lastName": "Smith",        "gender": "male",        "age": 32,        "number": "5678568567"     },     {        "firstName": "Emily",        "lastName": "Jones",        "gender": "female",        "age": 24,       ...