An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![NuGet](https://img.shields.io/nuget/v/MVVM.LTE)](https://www.nuget.org/packages/MVVM.LTE/) ![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Blogrammer/MVVM-LTE/Deploy%20to%20NuGet?logo=github) ![GitHub](https://img.shields.io/github/license/Blogrammer/MVVM-LTE?logo=github) ![Nuget](https://img.shields.io/nuget/dt/MVVM.LTE?logo=nuget)

# 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")