Popular posts from this blog
Simple WPF MVVM Application with Unit Testing.
Part-I: Simple Addition of Two Number Using WPF MVVM Pattern Part-II: Unit testing for same Application Part-I: Simple Addition of Two Number Using WPF MVVM Pattern Folder Structure(Part-I) Folder: Model - > AdditionofNumbers.cs public class AdditionofNumbers : PropertychangeNotify { private int num1; public int NUM1 { get { return num1; } set { num1 = value ; Notifypropertychange( "NUM1" ); } } private int num2; public int NUM2 { get { return num2; } set { num2 = value ; Notifypropertychange( "NUM2" ); } } private int addresult; public int ADDRESULT { get { return addresult; } set { addresult = value ; Notifypropertychange( "ADDRESULT" ); } } } Folder: ViewMode
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 ) 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, "number": "456754675" } ] **Folder-Model=> PersonModel.cs public class PersonModel:NotifyP
Comments
Post a Comment