https://github.com/nmklotas/modern-wpf
Modern WPF app architecture sample
https://github.com/nmklotas/modern-wpf
architecture modern mvvm wpf
Last synced: about 2 months ago
JSON representation
Modern WPF app architecture sample
- Host: GitHub
- URL: https://github.com/nmklotas/modern-wpf
- Owner: nmklotas
- Created: 2018-07-08T17:14:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-02T10:12:49.000Z (over 6 years ago)
- Last Synced: 2025-03-28T17:06:34.904Z (2 months ago)
- Topics: architecture, modern, mvvm, wpf
- Language: C#
- Homepage:
- Size: 2.69 MB
- Stars: 11
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Modern WPF architecture sample
[](http://www.elegantobjects.org)
1. App is divided and modularized into folders by feature, not by "technological" anemic names like "Models", "ViewModels", "Services" on the root.
2. Controls & resources modularized, not contained in one global place.
3. Objects are not dumb bags of data.
4. Logging is done using AOP techniques like DynamicProxy and Weaving.
5. API details are abstracted from ViewModels.
6. ViewModels communicating using mediator pattern.
7. Caliburn.Micro MVVM framework is used.