worlds-simplest-csharp-wpf-mvvm-example icon indicating copy to clipboard operation
worlds-simplest-csharp-wpf-mvvm-example copied to clipboard

The World's Simplest C# WPF MVVM Example

Results 2 worlds-simplest-csharp-wpf-mvvm-example issues
Sort by recently updated
recently updated
newest added

In the [blog post](https://www.markwithall.com/programming/2013/03/01/worlds-simplest-csharp-wpf-mvvm-example.html) it says: > **Model:** This can be really simple, the goal here is for the ViewModel not to have to do any of the business logic....

- Replace backing field with C#6's get-only auto-implemented property. Arguably simpler as it does not require separate declaration of getter and backing field. - Using expression bodied methods in `DelegateCommand`...