https://github.com/bloggrammer/mvvm-lte
MVVM.LTE is a lightweight .NET MVVM library for building loosely coupled, maintainable, and testable MVVM applications.
https://github.com/bloggrammer/mvvm-lte
mvvm prism wpf
Last synced: 10 months ago
JSON representation
MVVM.LTE is a lightweight .NET MVVM library for building loosely coupled, maintainable, and testable MVVM applications.
- Host: GitHub
- URL: https://github.com/bloggrammer/mvvm-lte
- Owner: bloggrammer
- License: mit
- Created: 2021-06-13T09:34:18.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T07:09:49.000Z (about 3 years ago)
- Last Synced: 2025-01-10T10:39:24.529Z (12 months ago)
- Topics: mvvm, prism, wpf
- Language: C#
- Homepage:
- Size: 87.9 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://www.nuget.org/packages/MVVM.LTE/)   
# MVVM-LTE
MVVM LTE is a lightweight .NET MVVM library for building loosely coupled, maintainable, and testable MVVM applications in C#. This library provides basic classes for developing your application in MVVM architecture.
You can download the latest MVVM LTE package from [here](https://www.nuget.org/packages/MVVM.LTE/ "MVVM LTE download").
MVVM LTE comes with one DLL with no dependencies.
- *MVVM.LTE.dll*
## Main classes in MVVM.LTE.dll are:
1. CustomObservableCollection- Extension class for ObservableCollection. It provides two methods: `Refresh()` and `Refresh(T item)` for updating the UI when a model property is modified.
2. ViewModelBase - Base class for ViewModel classes. It provides different implementations for NotifyPropertyChanged
3. SimpleCommand - A command that implements the ICommand interface. More about commands [here](https://docs.microsoft.com/en-us/dotnet/api/system.windows.input.icommand?view=net-5.0 "ICommand Interface").
4. SimpleIOC - An [IOC](http://en.wikipedia.org/wiki/Inversion_of_control "Inversion of Control") container for registering and resolving instances.
## 👋Want to contribute to MVVM.LTE?
If you have a bug or an idea, browse the open issues before opening a new one. You can also take a look at [How to Contribute on GitHub](https://www.dataschool.io/how-to-contribute-on-github/ "How to contribute on GitHub")